Skip to content

Commit

Permalink
Update SendingHeadersEvent.cs (#513)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tratcher authored Sep 1, 2023
1 parent 3c19466 commit 7fac447
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal void Fire()
for (int index = 0; index != count; ++index)
{
Tuple<Action<object>, object> tuple = callbacks[count - index - 1];
tuple.Item1(tuple.Item2);
tuple?.Item1(tuple.Item2);
}
}
}
Expand Down

0 comments on commit 7fac447

Please sign in to comment.