We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c92780a commit b81eb83Copy full SHA for b81eb83
ReactiveUI.Xaml/ReactiveAsyncCommand.cs
@@ -92,7 +92,7 @@ void commonCtor(int maximumConcurrent, IScheduler scheduler, IObservable<bool> c
92
this.Log().Fatal("Reference count dropped below zero");
93
}
94
return ret;
95
- }).Multicast(new BehaviorSubject<int>(0)).PermaRef();
+ }).Multicast(new BehaviorSubject<int>(0)).PermaRef().ObserveOn(RxApp.DeferredScheduler);
96
97
bool startCE = (_canExecuteExplicitFunc != null ? _canExecuteExplicitFunc(null) : true);
98
0 commit comments