Skip to content

Commit

Permalink
Merge branch 'fix-remote-post' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
holydk committed May 21, 2020
2 parents 5715e2a + 5586fd6 commit 49e2df4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Presentation/Nop.Web.Framework/RemotePost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ public void Post()
});

response.Clear();
response.Body.Write(data, 0, data.Length);
response.Body
.WriteAsync(data, 0, data.Length)
.Wait();

//store a value indicating whether POST has been done
_webHelper.IsPostBeingDone = true;
Expand Down

0 comments on commit 49e2df4

Please sign in to comment.