Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/rsocket-flowable/src/Flowable.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class FlowableSubscriber<T> implements ISubscriber<T> {
if (this._started && !this._active) {
console.warn(
'Flowable: Invalid call to onError(): %s.',
this._active
this._started
? 'onComplete/onError was already called'
: 'onSubscribe has not been called',
);
Expand All @@ -188,7 +188,7 @@ class FlowableSubscriber<T> implements ISubscriber<T> {
if (!this._active) {
console.warn(
'Flowable: Invalid call to onNext(): %s.',
this._active
this._started
? 'onComplete/onError was already called'
: 'onSubscribe has not been called',
);
Expand Down