Bond_009 5 سال پیش
والد
کامیت
6b959f40ac
1فایلهای تغییر یافته به همراه6 افزوده شده و 4 حذف شده
  1. 6 4
      Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

+ 6 - 4
Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

@@ -565,13 +565,12 @@ namespace Emby.Server.Implementations.HttpServer
                 }
                 }
                 catch (NotSupportedException)
                 catch (NotSupportedException)
                 {
                 {
-
                 }
                 }
             }
             }
 
 
             if (!string.IsNullOrWhiteSpace(rangeHeader) && totalContentLength.HasValue)
             if (!string.IsNullOrWhiteSpace(rangeHeader) && totalContentLength.HasValue)
             {
             {
-                var hasHeaders = new RangeRequestWriter(rangeHeader, totalContentLength.Value, stream, contentType, isHeadRequest, _logger)
+                var hasHeaders = new RangeRequestWriter(rangeHeader, totalContentLength.Value, stream, contentType, isHeadRequest)
                 {
                 {
                     OnComplete = options.OnComplete
                     OnComplete = options.OnComplete
                 };
                 };
@@ -608,8 +607,11 @@ namespace Emby.Server.Implementations.HttpServer
         /// <summary>
         /// <summary>
         /// Adds the caching responseHeaders.
         /// Adds the caching responseHeaders.
         /// </summary>
         /// </summary>
-        private void AddCachingHeaders(IDictionary<string, string> responseHeaders, TimeSpan? cacheDuration,
-            bool noCache, DateTime? lastModifiedDate)
+        private void AddCachingHeaders(
+            IDictionary<string, string> responseHeaders,
+            TimeSpan? cacheDuration,
+            bool noCache,
+            DateTime? lastModifiedDate)
         {
         {
             if (noCache)
             if (noCache)
             {
             {