asch/fix-everything #188

Open
andras wants to merge 114 commits from asch/fix-everything into main
Showing only changes of commit 0d9aebf900 - Show all commits
Andras Schmelczer 2026-04-28 22:20:57 +01:00

View file

@ -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);