mirror of
https://github.com/JonathanHerrewijnen/calibre-web.git
synced 2024-11-11 05:33:57 +00:00
Fix for #1870 (png was missing in supported picture formats for comic viewer)
This commit is contained in:
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…
Reference in New Issue
Block a user