mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
Fixing some regression issues (#2325)
* Pull jslib * Extend vaultTimeoutServiceCallbacks to use userId * Remove redundant call to tokenService.clear
This commit is contained in:
committed by
GitHub
parent
ebbf1d8b90
commit
95d92908f6
2
jslib
2
jslib
Submodule jslib updated: 8cb029947b...b7bb16c18a
@@ -272,7 +272,7 @@ export default class MainBackground {
|
|||||||
);
|
);
|
||||||
|
|
||||||
const vaultTimeoutServiceCallbacks = {
|
const vaultTimeoutServiceCallbacks = {
|
||||||
locked: async () => {
|
locked: async (userId?: string) => {
|
||||||
if (this.notificationsService != null) {
|
if (this.notificationsService != null) {
|
||||||
this.notificationsService.updateConnection(false);
|
this.notificationsService.updateConnection(false);
|
||||||
}
|
}
|
||||||
@@ -283,7 +283,7 @@ export default class MainBackground {
|
|||||||
await this.reloadProcess();
|
await this.reloadProcess();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
logout: async () => await this.logout(false),
|
logout: async (userId?: string) => await this.logout(false, userId),
|
||||||
};
|
};
|
||||||
|
|
||||||
this.vaultTimeoutService = new VaultTimeoutService(
|
this.vaultTimeoutService = new VaultTimeoutService(
|
||||||
@@ -561,7 +561,6 @@ export default class MainBackground {
|
|||||||
await Promise.all([
|
await Promise.all([
|
||||||
this.eventService.clearEvents(userId),
|
this.eventService.clearEvents(userId),
|
||||||
this.syncService.setLastSync(new Date(0), userId),
|
this.syncService.setLastSync(new Date(0), userId),
|
||||||
this.tokenService.clearToken(userId),
|
|
||||||
this.cryptoService.clearKeys(userId),
|
this.cryptoService.clearKeys(userId),
|
||||||
this.settingsService.clear(userId),
|
this.settingsService.clear(userId),
|
||||||
this.cipherService.clear(userId),
|
this.cipherService.clear(userId),
|
||||||
|
|||||||
Reference in New Issue
Block a user