Skip to content

Commit

Permalink
Merge pull request ReactiveX#628 from mattrjacobs/fix-merge-delay-error
Browse files Browse the repository at this point in the history
Properly wired up SynchronizedObserver within MergeDelayError operator
  • Loading branch information
mattrjacobs committed Dec 16, 2013
2 parents 442a29c + dd81411 commit 9c9076e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public Subscription onSubscribe(Observer<? super T> actualObserver) {
/**
* Subscribe to the parent Observable to get to the children Observables
*/
completeSubscription.add(sequences.subscribe(new ParentObserver(actualObserver)));
completeSubscription.add(sequences.subscribe(new ParentObserver(synchronizedObserver)));

/* return our subscription to allow unsubscribing */
return completeSubscription;
Expand Down

0 comments on commit 9c9076e

Please sign in to comment.