Skip to content

Commit 12a68ee

Browse files
committed
.
1 parent 3bcb0ee commit 12a68ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Thirdweb/Thirdweb.Http/ThirdwebHttpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public async Task<ThirdwebHttpResponseMessage> GetAsync(string requestUri, Cance
7878
this.AddHeaders(request);
7979
var result = await this._httpClient.SendAsync(request, cancellationToken).ConfigureAwait(false);
8080
#pragma warning disable CA2016 // Forward the 'CancellationToken' parameter to methods
81-
var resultContent = new ThirdwebHttpContent(await result.Content.ReadAsByteArrayAsync(cancellationToken).ConfigureAwait(false));
81+
var resultContent = new ThirdwebHttpContent(await result.Content.ReadAsByteArrayAsync().ConfigureAwait(false));
8282
#pragma warning restore CA2016 // Forward the 'CancellationToken' parameter to methods
8383
return new ThirdwebHttpResponseMessage((long)result.StatusCode, resultContent, result.IsSuccessStatusCode);
8484
}

0 commit comments

Comments
 (0)