1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 13:23:34 +00:00

fix: default single user state saving undefined value to state

This commit is contained in:
Andreas Coroiu
2024-07-02 15:49:30 +02:00
parent 1caa520328
commit 6c36da6ba5

View File

@@ -28,7 +28,9 @@ export class DefaultSingleUserState<T>
}
protected override async doStorageSave(newState: T, oldState: T): Promise<void> {
await super.doStorageSave(newState, oldState);
if (newState != null) {
await super.doStorageSave(newState, oldState);
}
if (newState != null && oldState == null) {
await this.stateEventRegistrarService.registerEvents(this.keyDefinition);
}