Skip to content

Commit

Permalink
Merge pull request #67 from vanniktech/fix-delimiters
Browse files Browse the repository at this point in the history
Fix delimiter check.
  • Loading branch information
IvBaranov authored Jun 30, 2021
2 parents 4fe8a17 + 62fe492 commit b4a3872
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public Flowable<String> observeStringStream(final int... delimiter) {
}

if (found) {
if (!delimitersMatched()) {
if (delimitersMatched()) {
emit();
}
} else {
Expand Down

0 comments on commit b4a3872

Please sign in to comment.