mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 22:08:27 +01:00
disable chunked encoding for images
This commit is contained in:
@@ -143,6 +143,10 @@ namespace MediaBrowser.Common.Net
|
||||
{
|
||||
return "image/png";
|
||||
}
|
||||
if (ext.Equals(".webp", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "image/webp";
|
||||
}
|
||||
if (ext.Equals(".ico", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return "image/vnd.microsoft.icon";
|
||||
|
||||
Reference in New Issue
Block a user