Update hashing

This commit is contained in:
Andras Schmelczer 2026-03-28 12:07:44 +00:00
commit 1c6cd80b64
3 changed files with 9 additions and 14 deletions

View file

@ -348,7 +348,7 @@ export class Syncer {
try {
const contentBytes =
await this.operations.read(relativePath); // this can throw FileNotFoundError
return hash(contentBytes);
return await hash(contentBytes);
} catch (e) {
if (
e instanceof Error &&