We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcb0ee commit 12a68eeCopy full SHA for 12a68ee
1 file changed
Thirdweb/Thirdweb.Http/ThirdwebHttpClient.cs
@@ -78,7 +78,7 @@ public async Task<ThirdwebHttpResponseMessage> GetAsync(string requestUri, Cance
78
this.AddHeaders(request);
79
var result = await this._httpClient.SendAsync(request, cancellationToken).ConfigureAwait(false);
80
#pragma warning disable CA2016 // Forward the 'CancellationToken' parameter to methods
81
- var resultContent = new ThirdwebHttpContent(await result.Content.ReadAsByteArrayAsync(cancellationToken).ConfigureAwait(false));
+ var resultContent = new ThirdwebHttpContent(await result.Content.ReadAsByteArrayAsync().ConfigureAwait(false));
82
#pragma warning restore CA2016 // Forward the 'CancellationToken' parameter to methods
83
return new ThirdwebHttpResponseMessage((long)result.StatusCode, resultContent, result.IsSuccessStatusCode);
84
}
0 commit comments