ui: switch to concatMap

This commit is contained in:
Aaron Greenspan
2021-01-19 17:28:41 -07:00
committed by Aiden McClelland
parent d224b7a114
commit 7ed220dc51

View File

@@ -35,7 +35,7 @@ export class GlobalAlertsNotifier {
),
concatMap(
() => this.osUpdateAlertNeeded$().pipe(
switchMap(vl => vl ? this.presentUpdateDailogues(vl) : of({ })),
concatMap(vl => vl ? this.presentUpdateDailogues(vl) : of({ })),
),
),
).subscribe()