Switched http compression from gzip to deflate

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-05 14:58:24 -04:00
parent debc4e6ae5
commit ecfffba494
3 changed files with 7 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ namespace MediaBrowser.ApiInteraction
public BaseClient(HttpClientHandler clientHandler)
{
clientHandler.AutomaticDecompression = DecompressionMethods.GZip;
clientHandler.AutomaticDecompression = DecompressionMethods.Deflate;
HttpClient = new HttpClient(clientHandler);
}