Fix: ignore special files originating from Apple devices

This commit is contained in:
Ozzieisaacs 2022-09-06 18:06:59 +02:00
commit 3a133901e4
1 changed files with 8 additions and 0 deletions

View File

@ -163,6 +163,14 @@ kthoom.ImageFile = function(file) {
this.mimeType = undefined;
break;
}
// Reset mime type for special files originating from Apple devices
// This folder may contain files having image extensions (for example .jpg) but those files are not actual images
// Trying to view these files cause corrupted/empty pages in the comic reader and files should be ignored
if (this.filename.indexOf("__MACOSX") !== -1) {
this.mimeType = undefined;
}
if ( this.mimeType !== undefined) {
this.dataURI = createURLFromArray(file.fileData, this.mimeType);
}