re-enable http compression for all providers except for last fm

This commit is contained in:
Luke Pulverenti
2013-05-20 14:03:09 -04:00
parent 466d00b021
commit c11c8bfdb4
4 changed files with 23 additions and 10 deletions

View File

@@ -49,5 +49,12 @@ namespace MediaBrowser.Common.Net
/// </summary>
/// <value><c>true</c> if [enable response caching]; otherwise, <c>false</c>.</value>
public bool EnableResponseCache { get; set; }
public bool EnableHttpCompression { get; set; }
public HttpRequestOptions()
{
EnableHttpCompression = true;
}
}
}