Skip to content

Commit

Permalink
Fix compiler warning/error
Browse files Browse the repository at this point in the history
  • Loading branch information
Amarok79 committed Nov 20, 2022
1 parent 217a8cf commit 2cad99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Amarok.Events/Events/EventSource`1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ private static ValueTask<Boolean> _InvokeAsyncCore_WaitForPendingTasks(IEnumerab
Task.WhenAll(tasks)
.ContinueWith(
(_tasks, _arg) => {
var tcs = (TaskCompletionSource<Boolean>)_arg;
var tcs = (TaskCompletionSource<Boolean>)_arg!;

if (_tasks.IsFaulted)
{
Expand Down

0 comments on commit 2cad99c

Please sign in to comment.