Release v1.4.28 with expanded bug audit fixes
Build and Release / build (push) Has been cancelled

This commit is contained in:
Sucukdeluxe
2026-02-28 19:47:46 +01:00
parent 05a0c4fd55
commit 84d8f37ba6
16 changed files with 966 additions and 282 deletions
+12 -2
View File
@@ -194,11 +194,21 @@ export async function importDlcContainers(filePaths: string[]): Promise<ParsedPa
let packages: ParsedPackageInput[] = [];
try {
packages = await decryptDlcLocal(filePath);
} catch {
} catch (error) {
if (/zu groß|ungültig/i.test(compactErrorText(error))) {
throw error;
}
packages = [];
}
if (packages.length === 0) {
packages = await decryptDlcViaDcrypt(filePath);
try {
packages = await decryptDlcViaDcrypt(filePath);
} catch (error) {
if (/zu groß|ungültig/i.test(compactErrorText(error))) {
throw error;
}
packages = [];
}
}
out.push(...packages);
}