Replaced deprecated RxJS operators

This commit is contained in:
squidfunk
2022-04-02 18:36:59 +02:00
parent f4f9c21d32
commit 92dc0375dc
19 changed files with 68 additions and 71 deletions

View File

@@ -34,7 +34,6 @@ import {
scan,
startWith,
switchMap,
switchMapTo,
toArray,
zip
} from "rxjs"
@@ -189,7 +188,7 @@ const manifest$ = merge(
)
.pipe(
startWith("*"),
switchMapTo(observable$.pipe(toArray()))
switchMap(() => observable$.pipe(toArray()))
)
))
)