Browse Source

fixes #2910 - 3.2.32.0 dlna issue

Luke Pulverenti 7 years ago
parent
commit
27868803d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

+ 1 - 1
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)