1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-02 17:53:41 +00:00

Added log on delete error.

This commit is contained in:
Todd Martin
2025-11-29 12:05:44 -05:00
parent ea89074f34
commit 2efcdf3257

View File

@@ -111,8 +111,9 @@ export class ElectronStorageService implements AbstractStorageService {
// Attempt to remove the corrupted key
try {
this.store.delete(key);
} catch {
} catch (cleanupError) {
// Ignore errors during cleanup
this.logService.debug("Failed to clean up corrupted key", key, cleanupError);
}
return Promise.resolve(null);
}