aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/DefaultHttpClientHandler.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-11-17 10:30:01 -0500
committerGitHub <noreply@github.com>2020-11-17 10:30:01 -0500
commitff57434d4b46b39700d6ad54fdf660350ad7d5b0 (patch)
tree7d049d799ba0dfad0f5d52ae113f16e638956b97 /MediaBrowser.Common/Net/DefaultHttpClientHandler.cs
parente0f60847c018fbcf3a4b76f69029860933c0dc7c (diff)
parent5fa4cce4cce2bcc6ac2a2cca884af5e659c836f0 (diff)
Merge pull request #4502 from crobibero/compres
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;
}
}
}