diff options
Diffstat (limited to 'src/DotNetOAuth/OAuthChannel.cs')
-rw-r--r-- | src/DotNetOAuth/OAuthChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/OAuthChannel.cs b/src/DotNetOAuth/OAuthChannel.cs index 4014ecf..aceaa42 100644 --- a/src/DotNetOAuth/OAuthChannel.cs +++ b/src/DotNetOAuth/OAuthChannel.cs @@ -143,7 +143,7 @@ namespace DotNetOAuth { string responseBody = MessagingUtilities.CreateQueryString(fields);
Response encodedResponse = new Response {
- Body = Encoding.UTF8.GetBytes(responseBody),
+ Body = responseBody,
OriginalMessage = response,
Status = System.Net.HttpStatusCode.OK,
Headers = new System.Net.WebHeaderCollection(),
|