aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-11-17 06:57:25 -0700
committercrobibero <cody@robibe.ro>2020-11-17 06:57:25 -0700
commit5fa4cce4cce2bcc6ac2a2cca884af5e659c836f0 (patch)
tree227b07ecda02122f5fdc95430c4c0914b8dce52b /MediaBrowser.Common/Net/DefaultHttpClientHandler.cs
parentfc3d6278be89b695aa79dc61d7f1226d4d6e441b (diff)
Use ALL the decompression methods.
Diffstat (limited to 'MediaBrowser.Common/Net/DefaultHttpClientHandler.cs')
-rw-r--r--MediaBrowser.Common/Net/DefaultHttpClientHandler.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs b/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs
index e189d6e70..f1c5f2477 100644
--- a/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs
+++ b/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;
}
}
}