diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-01 07:50:22 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-01 07:50:22 -0800 |
commit | 6e9889a61aa3fac1331d14ef18c95718c198c831 (patch) | |
tree | 05eba3233336d6e3703f5c632571cc5048aefc85 /src/DotNetOpenAuth.Core/Messaging/Channel.cs | |
parent | a72f4df236e67f9c965863b6c43954b085cf8f6b (diff) | |
download | DotNetOpenAuth-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.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 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; } |