diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-10 06:33:54 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-10 06:33:54 -0700 |
commit | 2b5cf309d8878487e2085d88ff20e9142f8624bb (patch) | |
tree | d70870a0022cf49c06eb524814fb691b5c252516 /src/DotNetOpenAuth.Core/Messaging/Channel.cs | |
parent | d06c16d1ff1efca45de59b76673d22587bb93649 (diff) | |
download | DotNetOpenAuth-2b5cf309d8878487e2085d88ff20e9142f8624bb.zip DotNetOpenAuth-2b5cf309d8878487e2085d88ff20e9142f8624bb.tar.gz DotNetOpenAuth-2b5cf309d8878487e2085d88ff20e9142f8624bb.tar.bz2 |
Fix for VerificationException that occurs on some machines.
Fixes #112
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/Channel.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/Channel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/Channel.cs b/src/DotNetOpenAuth.Core/Messaging/Channel.cs index 16e39d3..c58702c 100644 --- a/src/DotNetOpenAuth.Core/Messaging/Channel.cs +++ b/src/DotNetOpenAuth.Core/Messaging/Channel.cs @@ -1357,7 +1357,7 @@ namespace DotNetOpenAuth.Messaging { // Now sort the protection binding elements among themselves and add them to the list. orderedList.AddRange(protectionElements.OrderBy(element => element.Protection, BindingElementOutgoingMessageApplicationOrder)); - return orderedList; + return orderedList.AsEnumerable(); } /// <summary> |