aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-26 13:09:42 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-26 13:09:42 -0400
commita0d82a02c8059dbacacac727d334b3d39c052a48 (patch)
treeb38ab176ecb55d0ec7c5a611d697c3b49e8d1a35 /Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
parent099b823f2f65f24216a511e2fc8f6e20c36bd2d0 (diff)
update param encoding
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/HttpListenerHost.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 0e68389da..031d1d90b 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -731,6 +731,12 @@ namespace Emby.Server.Implementations.HttpServer
public object DeserializeJson(Type type, Stream stream)
{
+ //using (var reader = new StreamReader(stream))
+ //{
+ // var json = reader.ReadToEnd();
+ // Logger.Info(json);
+ // return _jsonSerializer.DeserializeFromString(json, type);
+ //}
return _jsonSerializer.DeserializeFromStream(stream, type);
}