From 62a5b430e1950bbce08a03eef976d4697319e834 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Thu, 21 Jul 2022 21:31:14 -0500 Subject: [PATCH] Continue on parser fail --- helpers/scanner/parsers/macho.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helpers/scanner/parsers/macho.js b/helpers/scanner/parsers/macho.js index 1558cfe..1b9a00a 100644 --- a/helpers/scanner/parsers/macho.js +++ b/helpers/scanner/parsers/macho.js @@ -129,6 +129,8 @@ export async function extractMachoMeta ({ machoFileInstance, FileApi = null }) { } catch ( err ) { console.log( 'Macho parser failed', Parser, err.message.substring(0,100) ) + continue + // throw new Error( 'Macho parser failed' ) } }