From d03fa44ba60935f8ef31e65d8c01116a85ea5c4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Naz=C4=B1m=20Can=20Alt=C4=B1nova?= Date: Thu, 30 Apr 2026 11:27:42 +0200 Subject: [PATCH] Do not show console error when libnames are failed to parse as a URL This is polluting the console output when we share a profile with URLs removed, because it will try to parse urls like `http://:564:26`. --- src/profile-logic/call-tree.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/profile-logic/call-tree.ts b/src/profile-logic/call-tree.ts index 57495bec52..b7d8e060c7 100644 --- a/src/profile-logic/call-tree.ts +++ b/src/profile-logic/call-tree.ts @@ -97,10 +97,6 @@ function extractFaviconFromLibname(libname: string): string | null { } return url.href; } catch (_e) { - console.error( - 'Error while extracing the favicon from the libname', - libname - ); return null; } }