diff options
Diffstat (limited to 'src/DotNetOpenAuth.AspNet/UriHelper.cs')
-rw-r--r-- | src/DotNetOpenAuth.AspNet/UriHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.AspNet/UriHelper.cs b/src/DotNetOpenAuth.AspNet/UriHelper.cs index 53a5c7f..2c6e5a9 100644 --- a/src/DotNetOpenAuth.AspNet/UriHelper.cs +++ b/src/DotNetOpenAuth.AspNet/UriHelper.cs @@ -76,7 +76,7 @@ namespace DotNetOpenAuth.AspNet { returnUrl = VirtualPathUtility.ToAbsolute(returnUrl); } - Uri publicUrl = HttpRequestInfo.GetPublicFacingUrl(context.Request, context.Request.ServerVariables); + Uri publicUrl = context.Request.GetPublicFacingUrl(); return new Uri(publicUrl, returnUrl); } |