Commit 87d6008d authored by Ozzie Isaacs's avatar Ozzie Isaacs

Fix for #1870 (png was missing in supported picture formats for comic viewer)

parent bc876a15
......@@ -146,6 +146,9 @@ kthoom.ImageFile = function(file) {
case "jpeg":
this.mimeType = "image/jpeg";
break;
case "png":
this.mimeType = "image/png";
break;
case "gif":
this.mimeType = "image/gif";
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment