Use await on reading the response content

(cherry picked from commit 82d586e7015d7ea06356ca436024a8af5a4fb677)
pull/2932/head
Bogdan 1 year ago
parent 71f4a88ab3
commit 9fe08429bc

@ -115,7 +115,7 @@ namespace NzbDrone.Common.Http.Dispatchers
}
else
{
data = responseMessage.Content.ReadAsByteArrayAsync(cts.Token).GetAwaiter().GetResult();
data = await responseMessage.Content.ReadAsByteArrayAsync(cts.Token);
}
}
catch (Exception ex)

Loading…
Cancel
Save