Remove redundant body rewind.

This commit is contained in:
Chris R 2015-09-08 14:14:39 -07:00
parent 68d721ec0d
commit 76fd055d8e
1 changed files with 0 additions and 1 deletions

View File

@ -344,7 +344,6 @@ namespace Microsoft.AspNet.Authentication.OpenIdConnect
&& Request.Body.CanRead)
{
var form = await Request.ReadFormAsync();
Request.Body.Seek(0, SeekOrigin.Begin);
message = new OpenIdConnectMessage(form.Select(pair => new KeyValuePair<string, string[]>(pair.Key, pair.Value)));
}