Преглед изворни кода

Merge pull request #4502 from crobibero/compres

Use ALL the decompression methods
Joshua M. Boniface пре 5 година
родитељ
комит
ff57434d4b
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      MediaBrowser.Common/Net/DefaultHttpClientHandler.cs

+ 1 - 2
MediaBrowser.Common/Net/DefaultHttpClientHandler.cs

@@ -13,8 +13,7 @@ namespace MediaBrowser.Common.Net
         /// </summary>
         public DefaultHttpClientHandler()
         {
-            // TODO change to DecompressionMethods.All with .NET5
-            AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
+            AutomaticDecompression = DecompressionMethods.All;
         }
     }
 }