Merge pull request #4502 from crobibero/compres

Use ALL the decompression methods
pull/4503/head
Joshua M. Boniface 4 years ago committed by GitHub
commit ff57434d4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save