Skip to content

Commit

Permalink
Fixed merge
Browse files Browse the repository at this point in the history
  • Loading branch information
shanselman committed Jan 28, 2013
2 parents 3035986 + 0aa611f commit 15764f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MVC4/PersonaMVC4Example/Controllers/PersonaController.cs
Expand Up @@ -35,7 +35,7 @@ public async Task<HttpResponseMessage> Login(string assertion)
var content = new FormUrlEncodedContent(
new Dictionary<string, string> {
{ "assertion", assertion },
{ "audience", HttpContext.Current.Request.Url.Host },
{ "audience", Request.RequestUri.Host },
}
);
var result = await client.PostAsync("https://verifier.login.persona.org/verify", content);
Expand Down

0 comments on commit 15764f9

Please sign in to comment.