Disable exception

This commit is contained in:
Maurice Heumann
2025-05-08 18:37:53 +02:00
parent 3e7f6e5fc1
commit 0cbc862aaa

View File

@@ -235,7 +235,7 @@ export function parsePeIcon(data: Uint8Array) {
try {
return tryParsePeIcon(data);
} catch (e) {
console.error(e);
// console.error(e);
return null;
}
}