You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
Fixed problem with neverending observable in RxPresenter
RxPresenter uses combineLatest to combine view subject and data
observable. CombineLatest waits for all its children to complete before
emiting onComplete. Fix this using materialize on source observable and
dematerialize on combined observable.