Use ALL the decompression methods.

This commit is contained in:
crobibero 2020-11-17 06:57:25 -07:00
parent fc3d6278be
commit 5fa4cce4cc

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