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

pull/1879/head
Ozzie Isaacs 3 years ago
parent bc876a159e
commit 87d6008dfc

@ -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;

Loading…
Cancel
Save