Skip to content
This repository has been archived by the owner on Mar 20, 2019. It is now read-only.

Commit

Permalink
Fixed JSON serialization regression in recent changes.
Browse files Browse the repository at this point in the history
Fixes Trac #188.
  • Loading branch information
AArnott committed Mar 20, 2010
1 parent 98fc53d commit 9636d0a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -177,7 +177,7 @@ public OpenIdAjaxRelyingParty(IRelyingPartyApplicationStore applicationStore)

if (requests.Any()) {
return new {
claimedIdentifier = requests.First().ClaimedIdentifier,
claimedIdentifier = requests.First().ClaimedIdentifier.ToString(),
requests = requests.Select(req => new {
endpoint = req.Provider.Uri.AbsoluteUri,
immediate = this.GetRedirectUrl(req, true),
Expand Down

0 comments on commit 9636d0a

Please sign in to comment.