summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/Channel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-01-01 07:50:22 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-01-01 07:50:22 -0800
commit6e9889a61aa3fac1331d14ef18c95718c198c831 (patch)
tree05eba3233336d6e3703f5c632571cc5048aefc85 /src/DotNetOpenAuth.Core/Messaging/Channel.cs
parenta72f4df236e67f9c965863b6c43954b085cf8f6b (diff)
downloadDotNetOpenAuth-6e9889a61aa3fac1331d14ef18c95718c198c831.zip
DotNetOpenAuth-6e9889a61aa3fac1331d14ef18c95718c198c831.tar.gz
DotNetOpenAuth-6e9889a61aa3fac1331d14ef18c95718c198c831.tar.bz2
OpenID RP login actually works now.
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 4d35c90..9d55e78 100644
--- a/src/DotNetOpenAuth.Core/Messaging/Channel.cs
+++ b/src/DotNetOpenAuth.Core/Messaging/Channel.cs
@@ -813,7 +813,7 @@ namespace DotNetOpenAuth.Messaging {
};
response.Headers.Location = builder.Uri;
- response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html; charset=utf-8");
+ response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html") { CharSet = "utf-8" };
return response;
}