aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-23 21:01:00 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-09-23 21:01:00 -0400
commit27868803d8bfe82f7cb3b3dc7aa48d3bd503d33a (patch)
tree6f5a5823aea6460e5ab41869b00fe4d6351367a9
parent2e47549f39252d7b6db0d99da5c0a2643b01df10 (diff)
fixes #2910 - 3.2.32.0 dlna issue
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpResultFactory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
index f5a1fe246..f30879c62 100644
--- a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
@@ -533,7 +533,7 @@ namespace Emby.Server.Implementations.HttpServer
{
stream.Dispose();
- return GetHttpResult(new byte[] { }, contentType, true);
+ return GetHttpResult(new byte[] { }, contentType, true, responseHeaders);
}
var hasHeaders = new StreamWriter(stream, contentType, _logger)