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:
Huang Xin
2025-10-23 21:38:44 +08:00
committed by GitHub
parent 55c97cab7e
commit 7cd3ebfcba
+1
View File
@@ -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}`)
);