Fix mimetype in comic reader

This commit is contained in:
Ozzie Isaacs 2021-01-31 11:21:09 +01:00
parent 93f0724b83
commit a866dbaa80
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ kthoom.ImageFile = function(file) {
this.mimeType = "image/jpeg";
break;
case "gif":
this.mimeType = "iamge/gif";
this.mimeType = "image/gif";
break;
case "svg":
this.mimeType = "image/svg+xml";