Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fixed a bug in AuthenticationHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
leastprivilege committed Jun 17, 2013
1 parent 394b923 commit 27d338d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public RelyingParty GetRelyingPartyDetailsFromReturnUrl(string returnUrl)
var url = HttpUtility.UrlDecode(returnUrl);
Uri uri;

if (Uri.TryCreate(url, UriKind.RelativeOrAbsolute, out uri))
if (Uri.TryCreate("http://foo.com" + url, UriKind.Absolute, out uri))
{
WSFederationMessage message;

Expand Down

0 comments on commit 27d338d

Please sign in to comment.