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

@@ -60,9 +60,9 @@ namespace MediaBrowser.Common.Net
{
Response.SendChunked = true;
if (handler.GzipResponse)
if (handler.CompressResponse)
{
Response.AddHeader("Content-Encoding", "gzip");
Response.AddHeader("Content-Encoding", "deflate");
}
if (cacheDuration.Ticks > 0)