diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs b/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs index fa8d8fe..1fb4866 100644 --- a/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs +++ b/OpenSim/Framework/Configuration/HTTP/HTTPConfiguration.cs | |||
@@ -74,7 +74,7 @@ namespace OpenSim.Framework.Configuration.HTTP | |||
74 | count = resStream.Read(buf, 0, buf.Length); | 74 | count = resStream.Read(buf, 0, buf.Length); |
75 | if (count != 0) | 75 | if (count != 0) |
76 | { | 76 | { |
77 | tempString = Encoding.ASCII.GetString(buf, 0, count); | 77 | tempString = Encoding.UTF8.GetString(buf, 0, count); |
78 | sb.Append(tempString); | 78 | sb.Append(tempString); |
79 | } | 79 | } |
80 | } while (count > 0); | 80 | } while (count > 0); |