start adding welcome OS screen

This commit is contained in:
Matt Hill
2021-01-14 13:39:04 -07:00
committed by Aiden McClelland
parent 29d5e3b36e
commit 778d22ab2b
8 changed files with 79 additions and 3 deletions

View File

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