Merge pull request #4502 from crobibero/compres

Use ALL the decompression methods
This commit is contained in:
Joshua M. Boniface 2020-11-17 10:30:01 -05:00 committed by GitHub
commit ff57434d4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}
}