aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-03-05 21:33:18 -0500
committerGitHub <noreply@github.com>2017-03-05 21:33:18 -0500
commit972aaba66eb65a46e7fe8ee1cdd8a64286a87b82 (patch)
tree36ebebd7c9fc2a1f515c3ed422f107d23d4cf6e1 /Emby.Server.Implementations/HttpServer
parent881d44205883183d71b858e1631aa73eb840fc80 (diff)
parent9e74d834a7bbd236daab15ab6d98a0e6a301c150 (diff)
Merge pull request #2512 from MediaBrowser/dev
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);