Skip to content

Commit ee400ef

Browse files
committed
fix: align global sync behavior with upstream while keeping iOS resume
Made-with: Cursor
1 parent 7b1d120 commit ee400ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/app/src/context/global-sync.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,9 @@ function createGlobalSync() {
307307
})
308308
if (event.type === "server.connected" || event.type === "global.disposed") {
309309
if (recent) return
310-
queueDirectories(true)
310+
for (const dir of Object.keys(children.children)) {
311+
queue.push(dir)
312+
}
311313
}
312314
return
313315
}

0 commit comments

Comments
 (0)