diff --git a/src/lib/storage/checks.ts b/src/lib/storage/checks.ts index 0e886de2..7bbea707 100644 --- a/src/lib/storage/checks.ts +++ b/src/lib/storage/checks.ts @@ -40,6 +40,9 @@ export const isPotentialZipFile = ( if (!filename) { return false; } + if (filename.toLowerCase().endsWith('.crdownload')) { + return true; + } return filename.trim().endsWith('.') || !filename.includes('.'); };