We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
executing
1 parent ee0ebfc commit 96850ffCopy full SHA for 96850ff
Sources/Action/Action.swift
@@ -98,10 +98,10 @@ public final class Action<Input, Element> {
98
.merge()
99
100
executing = executionObservables.flatMap {
101
- Observable
102
- .just(true)
103
- .concat($0.ignoreElements().map { _ in true }.catchError { _ in Observable.empty() })
104
- .concat(Observable.just(false))
+ Observable.concat([
+ Observable.just(true),
+ $0.ignoreElements().map { _ in true }.catchError { _ in Observable.empty() },
+ Observable.just(false)])
105
}
106
.startWith(false)
107
.shareReplay(1)
0 commit comments