summaryrefslogtreecommitdiff
path: root/framebuffer/filetype.c
diff options
context:
space:
mode:
Diffstat (limited to 'framebuffer/filetype.c')
-rw-r--r--framebuffer/filetype.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/framebuffer/filetype.c b/framebuffer/filetype.c
index d15890ce4..4b303e5f1 100644
--- a/framebuffer/filetype.c
+++ b/framebuffer/filetype.c
@@ -33,6 +33,8 @@ const char *fetch_filetype(const char *unix_path)
l = strlen(unix_path);
if (2 < l && strcasecmp(unix_path + l - 3, "css") == 0)
return "text/css";
+ if (2 < l && strcasecmp(unix_path + l - 3, "f79") == 0)
+ return "text/css";
if (2 < l && strcasecmp(unix_path + l - 3, "jpg") == 0)
return "image/jpeg";
if (3 < l && strcasecmp(unix_path + l - 4, "jpeg") == 0)