diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-01-23 15:41:25 -0800 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2009-01-23 15:41:25 -0800 |
commit | 27dad8e09d3f7952cd8ecc17214c995215591ffa (patch) | |
tree | 89e0fc15f8db897eb7053f5874849eb3131ede09 /src/DotNetOpenAuth.Test/Mocks | |
parent | de2facf6dd659fd4b2a4d38b0d1571762f7721b6 (diff) | |
download | DotNetOpenAuth-27dad8e09d3f7952cd8ecc17214c995215591ffa.zip DotNetOpenAuth-27dad8e09d3f7952cd8ecc17214c995215591ffa.tar.gz DotNetOpenAuth-27dad8e09d3f7952cd8ecc17214c995215591ffa.tar.bz2 |
Refactored association management functions from the OpenIdRelyingParty class into an AssociationManager class.
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs index f9a0270..edf60e6 100644 --- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs +++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingChannel.cs @@ -150,7 +150,10 @@ namespace DotNetOpenAuth.Test.Mocks { } protected override IDirectedProtocolMessage ReadFromRequestInternal(HttpRequestInfo request) { - this.ProcessMessageFilter(request.Message, false); + if (request.Message != null) { + this.ProcessMessageFilter(request.Message, false); + } + return request.Message; } |