We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there! I've faced with an issue when debouncing empty source it leads NPE. Here is simple test which demonstrates a problem:
@Test public void debounceOnEmpty() { Observable.empty().debounce(new Function<Object, ObservableSource<Object>>() { @Override public ObservableSource<Object> apply(Object o) { return Observable.just(new Object()); } }).subscribe(); }
Issue also touches Flowable in the same way. RxJava version is 2.2.7 however it is also reproducible for latest 3.x.
Flowable
I am going to create PR with a fix soon for both of versions, let's keep this ticket to track a state of the issue.
The text was updated successfully, but these errors were encountered:
Closing via #6559 & #6560.
Sorry, something went wrong.
No branches or pull requests
Hey there!
I've faced with an issue when debouncing empty source it leads NPE. Here is simple test which demonstrates a problem:
Issue also touches
Flowable
in the same way. RxJava version is 2.2.7 however it is also reproducible for latest 3.x.I am going to create PR with a fix soon for both of versions, let's keep this ticket to track a state of the issue.
The text was updated successfully, but these errors were encountered: