Skip to content

Commit

Permalink
Update SignalBus.cs to fix compiler error
Browse files Browse the repository at this point in the history
ZEN_SIGNALS_ADD_UNIRX currently does not compile because "GetStream<TSignal>(object identifier)" calls a function with an old signature.
  • Loading branch information
FizzyGames authored and svermeulen committed Apr 15, 2019
1 parent 27125fc commit cb9b1fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void TryFire(object signal)
#if ZEN_SIGNALS_ADD_UNIRX
public IObservable<TSignal> GetStreamId<TSignal>(object identifier)
{
return GetStream(typeof(TSignal), identifier).Select(x => (TSignal)x);
return GetStreamId(typeof(TSignal), identifier).Select(x => (TSignal)x);
}

public IObservable<TSignal> GetStream<TSignal>()
Expand Down

0 comments on commit cb9b1fa

Please # to comment.