Use await on reading the response content

(cherry picked from commit 82d586e7015d7ea06356ca436024a8af5a4fb677)
This commit is contained in:
Bogdan committed 2023-09-18 03:24:30 +03:00
1 parent 71f4a88ab3
commit 9fe08429bc
1 file changed
+1 -1
@@ -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)