mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-05 19:52:09 -05:00
Use await on reading the response content
(cherry picked from commit 82d586e7015d7ea06356ca436024a8af5a4fb677)
This commit is contained in:
@@ -115,7 +115,7 @@ public async Task<HttpResponse> GetResponseAsync(HttpRequest request, CookieCont
|
||||
}
|
||||
else
|
||||
{
|
||||
data = responseMessage.Content.ReadAsByteArrayAsync(cts.Token).GetAwaiter().GetResult();
|
||||
data = await responseMessage.Content.ReadAsByteArrayAsync(cts.Token);
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
||||
Reference in New Issue
Block a user