mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-25 15:16:07 +00:00
Fix small regression that I missed for 0.4.3
This commit is contained in:
@@ -188,7 +188,11 @@ function Plugin:startPolling()
|
|||||||
end
|
end
|
||||||
|
|
||||||
while self._polling do
|
while self._polling do
|
||||||
local changes = api:getChanges():await()
|
local changesOk, changes = api:getChanges():await()
|
||||||
|
|
||||||
|
if not changesOk then
|
||||||
|
return Promise.reject(changes)
|
||||||
|
end
|
||||||
|
|
||||||
if #changes > 0 then
|
if #changes > 0 then
|
||||||
local routes = {}
|
local routes = {}
|
||||||
|
|||||||
Reference in New Issue
Block a user