mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-11 04:42:18 +01:00
Switched http compression from gzip to deflate
This commit is contained in:
parent
debc4e6ae5
commit
ecfffba494
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user