소스 검색

Use ALL the decompression methods.

crobibero 5 년 전
부모
커밋
5fa4cce4cc
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>
         /// </summary>
         public DefaultHttpClientHandler()
         public DefaultHttpClientHandler()
         {
         {
-            // TODO change to DecompressionMethods.All with .NET5
-            AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
+            AutomaticDecompression = DecompressionMethods.All;
         }
         }
     }
     }
 }
 }