Add image/gif to compressible mime types

This commit is contained in:
2021-12-27 13:08:51 +01:00
parent 15c160a60a
commit ce91fecc80

View File

@ -128,6 +128,7 @@ int mime_is_compressible(const char *type) {
strcmp(type_parsed, "font/eot") == 0 ||
strcmp(type_parsed, "font/opentype") == 0 ||
strcmp(type_parsed, "image/bmp") == 0 ||
strcmp(type_parsed, "image/gif") == 0 ||
strcmp(type_parsed, "image/vnd.microsoft.icon") == 0 ||
strcmp(type_parsed, "image/vnd.microsoft.iconbinary") == 0 ||
strcmp(type_parsed, "image/x-icon") == 0;