Skip to content

Commit

Permalink
Merge pull request #245 from WebApiClient/upstream-master
Browse files Browse the repository at this point in the history
fix #244
  • Loading branch information
xljiulang committed Mar 5, 2024
2 parents 02e0370 + 74b8036 commit b338422
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public Task OnRequestAsync(ApiParameterContext context)
{
foreach (var item in tokens)
{
if (token.Equals(CancellationToken.None) == false)
if (item.Equals(CancellationToken.None) == false)
{
context.HttpContext.CancellationTokens.Add(item);
}
Expand Down

0 comments on commit b338422

Please sign in to comment.