Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed Jun 2, 2019
1 parent e763296 commit 8f727d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StreamJsonRpc/JsonRpc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,7 @@ public void Dispose()

private void OnEventRaisedGeneric<T>(object sender, T args)
{
this.jsonRpc.NotifyAsync(this.rpcEventName, new object[] { args });
this.jsonRpc.NotifyAsync(this.rpcEventName, new object[] { args }).Forget();
}

private void OnEventRaised(object sender, EventArgs args)
Expand Down

0 comments on commit 8f727d4

Please sign in to comment.