1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-21 11:35:34 +01:00

[PM-4107] Only call config on successful sync (#7149)

This commit is contained in:
Todd Martin 2023-12-12 18:14:34 -05:00 committed by GitHub
parent 270af43d52
commit bfa76885ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -232,8 +232,10 @@ export class AppComponent implements OnInit, OnDestroy {
case "syncStarted":
break;
case "syncCompleted":
await this.updateAppMenu();
this.configService.triggerServerConfigFetch();
if (message.successfully) {
this.updateAppMenu();
this.configService.triggerServerConfigFetch();
}
break;
case "openSettings":
await this.openModal<SettingsComponent>(SettingsComponent, this.settingsRef);

View File

@ -134,7 +134,9 @@ export class AppComponent implements OnDestroy, OnInit {
case "syncStarted":
break;
case "syncCompleted":
this.configService.triggerServerConfigFetch();
if (message.successfully) {
this.configService.triggerServerConfigFetch();
}
break;
case "upgradeOrganization": {
const upgradeConfirmed = await this.dialogService.openSimpleDialog({