1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-10 21:33:27 +00: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
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);