summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/Channel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-10 06:33:54 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-10 06:33:54 -0700
commit2b5cf309d8878487e2085d88ff20e9142f8624bb (patch)
treed70870a0022cf49c06eb524814fb691b5c252516 /src/DotNetOpenAuth.Core/Messaging/Channel.cs
parentd06c16d1ff1efca45de59b76673d22587bb93649 (diff)
downloadDotNetOpenAuth-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.cs2
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>