From 0d9aebf900b1b460d71d3d777d1190d14566fe85 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Tue, 28 Apr 2026 22:20:57 +0100 Subject: [PATCH] eeeeh --- frontend/sync-client/src/sync-operations/syncer.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/frontend/sync-client/src/sync-operations/syncer.ts b/frontend/sync-client/src/sync-operations/syncer.ts index 0ee17278..31f04b55 100644 --- a/frontend/sync-client/src/sync-operations/syncer.ts +++ b/frontend/sync-client/src/sync-operations/syncer.ts @@ -483,12 +483,6 @@ export class Syncer { ); return; } - - // Read `record.path` (not a captured local) on every access. The - // queue mutates `record.path` in place when a user rename arrives - // mid-roundtrip, so re-reading from the live record keeps the - // path current; capturing into a local variable would freeze it - // at function entry and then write/read against a vacated slot. const contentBytes = await this.operations.read(record.path); const contentHash = await hash(contentBytes);