Fix entity framework queries to work in netcoreapp3.0

This commit is contained in:
nicolas.dorier
2019-10-06 15:47:46 +09:00
parent f4977e7f9f
commit 536f98b566
6 changed files with 20 additions and 14 deletions

View File

@@ -103,7 +103,7 @@ namespace BTCPayServer.Security.Bitpay
{
using (StreamReader reader = new StreamReader(httpContext.Request.Body, Encoding.UTF8, true, 1024, true))
{
body = reader.ReadToEnd();
body = await reader.ReadToEndAsync();
}
httpContext.Request.Body.Position = 0;
}