From 0cbc862aaa358da48cdecf5ebc0d7f7fa9a21507 Mon Sep 17 00:00:00 2001 From: Maurice Heumann Date: Thu, 8 May 2025 18:37:53 +0200 Subject: [PATCH] Disable exception --- page/src/pe-icon-parser.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/src/pe-icon-parser.tsx b/page/src/pe-icon-parser.tsx index c9c603d1..6d0ffb50 100644 --- a/page/src/pe-icon-parser.tsx +++ b/page/src/pe-icon-parser.tsx @@ -235,7 +235,7 @@ export function parsePeIcon(data: Uint8Array) { try { return tryParsePeIcon(data); } catch (e) { - console.error(e); + // console.error(e); return null; } }