Skip to content

Commit

Permalink
Added another ConfigureAwait(false)
Browse files Browse the repository at this point in the history
  • Loading branch information
Strafe153 committed Apr 8, 2024
1 parent 6270e11 commit 5b2d1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LiqPaySDK/LiqPay.SDK/LiqPayClientHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static async Task<string> PostAsync(string url, Dictionary<string, string
{
responseMessage.EnsureSuccessStatusCode();

using (var responseStream = await responseMessage.Content.ReadAsStreamAsync())
using (var responseStream = await responseMessage.Content.ReadAsStreamAsync().ConfigureAwait(false))
using (var reader = new StreamReader(responseStream, encoding))
{
return reader.ReadToEnd();
Expand Down

0 comments on commit 5b2d1f1

Please sign in to comment.