diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-09 11:43:04 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-09 11:43:04 -0800 |
commit | c822a97c464a31fac7eccfb1ca9fb4f5b70a53b8 (patch) | |
tree | f15a7b3e9a74fd6be92fb7deaf190e159592383e /src/DotNetOpenAuth.OpenId.RelyingParty.UI | |
parent | f12f5a159afcfd28bd0b0db451bbc390ab40c515 (diff) | |
download | DotNetOpenAuth-c822a97c464a31fac7eccfb1ca9fb4f5b70a53b8.zip DotNetOpenAuth-c822a97c464a31fac7eccfb1ca9fb4f5b70a53b8.tar.gz DotNetOpenAuth-c822a97c464a31fac7eccfb1ca9fb4f5b70a53b8.tar.bz2 |
Fixes OpenIdLogin control and sample.
Diffstat (limited to 'src/DotNetOpenAuth.OpenId.RelyingParty.UI')
-rw-r--r-- | src/DotNetOpenAuth.OpenId.RelyingParty.UI/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OpenId.RelyingParty.UI/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs b/src/DotNetOpenAuth.OpenId.RelyingParty.UI/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs index 14adf3c..9eb4f0e 100644 --- a/src/DotNetOpenAuth.OpenId.RelyingParty.UI/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs +++ b/src/DotNetOpenAuth.OpenId.RelyingParty.UI/OpenId/RelyingParty/OpenIdRelyingPartyControlBase.cs @@ -529,7 +529,7 @@ namespace DotNetOpenAuth.OpenId.RelyingParty { if (this.IsPopupAppropriate(request)) { await this.ScriptPopupWindowAsync(request, cancellationToken); } else { - await request.RedirectToProviderAsync(cancellationToken: cancellationToken); + await request.RedirectToProviderAsync(new HttpContextWrapper(this.Context), cancellationToken); } } |