forked from akai/readest
compat: support .fb.zip files as FBZ format (#2307)
Although .fb.zip is not an officially recognized extension, many FBZ files use this format, so it's now treated as FBZ for compatibility.
This commit is contained in:
@@ -195,6 +195,7 @@ export class DocumentLoader {
|
||||
private isFBZ(): boolean {
|
||||
return (
|
||||
this.file.type === 'application/x-zip-compressed-fb2' ||
|
||||
this.file.name.endsWith('.fb.zip') ||
|
||||
this.file.name.endsWith('.fb2.zip') ||
|
||||
this.file.name.endsWith(`.${EXTS.FBZ}`)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user