diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-08-02 15:16:19 -0600 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-08-02 15:16:19 -0600 |
commit | 6816f003019c792b23a27d7cede056fae95b8f00 (patch) | |
tree | 85023e0da775f0dad566e78eeb12292e095434a7 /samples/OpenIdWebRingSsoProvider/Code/Util.cs | |
parent | 7c972c147c32a54bf611baaa3de11cea433d8433 (diff) | |
download | DotNetOpenAuth-6816f003019c792b23a27d7cede056fae95b8f00.zip DotNetOpenAuth-6816f003019c792b23a27d7cede056fae95b8f00.tar.gz DotNetOpenAuth-6816f003019c792b23a27d7cede056fae95b8f00.tar.bz2 |
Samples now build.
Diffstat (limited to 'samples/OpenIdWebRingSsoProvider/Code/Util.cs')
-rw-r--r-- | samples/OpenIdWebRingSsoProvider/Code/Util.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OpenIdWebRingSsoProvider/Code/Util.cs b/samples/OpenIdWebRingSsoProvider/Code/Util.cs index 5a3a2fc..c9cb581 100644 --- a/samples/OpenIdWebRingSsoProvider/Code/Util.cs +++ b/samples/OpenIdWebRingSsoProvider/Code/Util.cs @@ -52,7 +52,7 @@ namespace OpenIdWebRingSsoProvider.Code { internal static void ProcessAuthenticationChallenge(IAuthenticationRequest idrequest) { // Verify that RP discovery is successful. - if (idrequest.IsReturnUrlDiscoverable(ProviderEndpoint.Provider) != RelyingPartyDiscoveryResult.Success) { + if (idrequest.IsReturnUrlDiscoverable(ProviderEndpoint.Provider.Channel.WebRequestHandler) != RelyingPartyDiscoveryResult.Success) { idrequest.IsAuthenticated = false; return; } |