Double check before delete

This commit is contained in:
Andras Schmelczer 2025-01-19 13:00:07 +00:00
parent 6e9558f13e
commit b4b4680422
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 15 additions and 1 deletions

View file

@ -176,6 +176,13 @@ export class Syncer {
`Document ${relativePath} has been deleted locally, scheduling sync to delete it`
);
if (await this.operations.exists(relativePath)) {
Logger.getInstance().debug(
`Document ${relativePath} actually exists locally, skipping`
);
return Promise.resolve();
}
return this.internalSyncLocallyDeletedFile(relativePath);
})
);