We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4f996c9 + 456cfca commit f9032e4Copy full SHA for f9032e4
client/src/composables/zipExplorer.ts
@@ -310,7 +310,7 @@ export function validateLocalZipFile(file?: File | null): string {
310
}
311
312
export function isLocalZipFile(file?: File | null): boolean {
313
- return Boolean(file) && file?.type === "application/zip";
+ return Boolean(file) && (file?.type === "application/zip" || file?.type === "application/x-zip-compressed");
314
315
316
export async function isRemoteZipFile(url: string): Promise<boolean> {
0 commit comments