Skip to content

Commit

Permalink
DebugHook got miswired before
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrjacobs committed Jun 17, 2014
1 parent 92e11ea commit 43b75a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static <T, C> DebugNotification<T> createSubscribe(Observer<? super T> o,
o = ds.getActual();
}
if (sourceFunc instanceof DebugHook.DebugOnSubscribe) {
sourceFunc = (OnSubscribe<T>) ((SafeSubscriber<T>) sourceFunc).getActual();
sourceFunc = ((DebugHook.DebugOnSubscribe) sourceFunc).getActual();
}
return new DebugNotification<T>(o, from, Kind.Subscribe, null, null, to, source, sourceFunc);
}
Expand Down

0 comments on commit 43b75a9

Please sign in to comment.