aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-05 21:32:56 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-05 21:32:56 -0500
commit9e74d834a7bbd236daab15ab6d98a0e6a301c150 (patch)
tree36ebebd7c9fc2a1f515c3ed422f107d23d4cf6e1 /Emby.Server.Implementations/HttpServer
parent00fb4711623d5654dca9fd88e916e0c63d8772c9 (diff)
update legacy hdhomerun support
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpListenerHost.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
index 6fcdab874..b5a3c2992 100644
--- a/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpListenerHost.cs
@@ -579,7 +579,7 @@ namespace Emby.Server.Implementations.HttpServer
}
else
{
- ErrorHandler(new FileNotFoundException(), httpReq);
+ ErrorHandler(new FileNotFoundException(), httpReq, false);
}
}
catch (OperationCanceledException ex)
@@ -633,7 +633,6 @@ namespace Emby.Server.Implementations.HttpServer
return null;
}
-
private void Write(IResponse response, string text)
{
var bOutput = Encoding.UTF8.GetBytes(text);