ui: coooool

This commit is contained in:
Aaron Greenspan
2021-01-20 22:55:19 -07:00
committed by Aiden McClelland
parent fe7410c0fa
commit bcbd972502
2 changed files with 91 additions and 53 deletions

View File

@@ -38,7 +38,7 @@ export class SyncDaemon {
sync (): Observable<void> {
return from(this.getServerAndApps()).pipe(
concatMap(() => this.syncNotifier.handleSpecial(this.serverModel.peek())),
concatMap(() => this.startupAlertsNotifier.handleSpecial(this.serverModel.peek())),
concatMap(() => this.startupAlertsNotifier.runChecks(this.serverModel.peek())),
tap(() => this.$synced$.next()),
catchError(e => of(console.error(`Exception in sync service`, e))),
)