1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-09-28 15:08:49 +00:00

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

This commit is contained in:
Ozzie Isaacs 2021-02-27 09:23:34 +01:00
parent bc876a159e
commit 87d6008dfc

View File

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