diff options
| author | crobibero <cody@robibe.ro> | 2020-11-17 06:57:25 -0700 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-11-17 06:57:25 -0700 |
| commit | 5fa4cce4cce2bcc6ac2a2cca884af5e659c836f0 (patch) | |
| tree | 227b07ecda02122f5fdc95430c4c0914b8dce52b /MediaBrowser.Common/Net/DefaultHttpClientHandler.cs | |
| parent | fc3d6278be89b695aa79dc61d7f1226d4d6e441b (diff) | |
Use ALL the decompression methods.
Diffstat (limited to 'MediaBrowser.Common/Net/DefaultHttpClientHandler.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/DefaultHttpClientHandler.cs | 3 |
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; } } } |
