diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-05 21:32:56 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-05 21:32:56 -0500 |
| commit | 9e74d834a7bbd236daab15ab6d98a0e6a301c150 (patch) | |
| tree | 36ebebd7c9fc2a1f515c3ed422f107d23d4cf6e1 /Emby.Server.Implementations/HttpServer | |
| parent | 00fb4711623d5654dca9fd88e916e0c63d8772c9 (diff) | |
update legacy hdhomerun support
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/HttpListenerHost.cs | 3 |
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); |
