Luke Pulverenti 8 年之前
父节点
当前提交
dab74b9cd1

+ 9 - 0
Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

@@ -438,6 +438,15 @@ namespace Emby.Server.Implementations.HttpServer
             options.CacheKey = cacheKey.GetMD5();
             options.CacheKey = cacheKey.GetMD5();
             options.ContentFactory = () => Task.FromResult(GetFileStream(path, fileShare));
             options.ContentFactory = () => Task.FromResult(GetFileStream(path, fileShare));
 
 
+            options.ResponseHeaders = options.ResponseHeaders ?? new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
+
+            // Quotes are valid in linux. They'll possibly cause issues here
+            var filename = (Path.GetFileName(path) ?? string.Empty).Replace("\"", string.Empty);
+            if (!string.IsNullOrWhiteSpace(filename))
+            {
+                options.ResponseHeaders["Content-Disposition"] = "inline; filename=\"" + filename + "\"";
+            }
+
             return GetStaticResult(requestContext, options);
             return GetStaticResult(requestContext, options);
         }
         }
 
 

+ 0 - 4
MediaBrowser.Api/Library/LibraryService.cs

@@ -512,10 +512,6 @@ namespace MediaBrowser.Api.Library
 
 
             var headers = new Dictionary<string, string>();
             var headers = new Dictionary<string, string>();
 
 
-            // Quotes are valid in linux. They'll possibly cause issues here
-            var filename = Path.GetFileName(item.Path).Replace("\"", string.Empty);
-            headers["Content-Disposition"] = string.Format("attachment; filename=\"{0}\"", filename);
-
             if (user != null)
             if (user != null)
             {
             {
                 LogDownload(item, user, auth);
                 LogDownload(item, user, auth);

+ 1 - 1
SharedVersion.cs

@@ -1,3 +1,3 @@
 using System.Reflection;
 using System.Reflection;
 
 
-[assembly: AssemblyVersion("3.2.25.7")]
+[assembly: AssemblyVersion("3.2.25.8")]