summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-02-16 16:07:02 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2019-02-16 16:08:17 +0000
commitcfb6c461fc61c64cf39e4708922ad024ac5fce91 (patch)
tree565ae9f061079944b1ac02d013117b07bc3fca4e
parente4457f6179a000009176c5f0dce63b985a076b78 (diff)
downloadnetsurf-cfb6c461fc61c64cf39e4708922ad024ac5fce91.tar.gz
netsurf-cfb6c461fc61c64cf39e4708922ad024ac5fce91.tar.bz2
monkey: Add bmp and ico to mime_hash.
-rw-r--r--frontends/monkey/filetype.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/frontends/monkey/filetype.c b/frontends/monkey/filetype.c
index 65c84f9bd..f0f22d00c 100644
--- a/frontends/monkey/filetype.c
+++ b/frontends/monkey/filetype.c
@@ -69,8 +69,10 @@ void monkey_fetch_filetype_init(const char *mimefile)
hash_add(mime_hash, "html", "text/html");
hash_add(mime_hash, "jpg", "image/jpeg");
hash_add(mime_hash, "jpeg", "image/jpeg");
+ hash_add(mime_hash, "bmp", "image/bmp");
hash_add(mime_hash, "gif", "image/gif");
hash_add(mime_hash, "png", "image/png");
+ hash_add(mime_hash, "ico", "image/ico");
hash_add(mime_hash, "jng", "image/jng");
hash_add(mime_hash, "mng", "image/mng");
hash_add(mime_hash, "webp", "image/webp");