diff --git a/app/lib/methods/helpers/openLink.ts b/app/lib/methods/helpers/openLink.ts index 092d527d4..156a360c7 100644 --- a/app/lib/methods/helpers/openLink.ts +++ b/app/lib/methods/helpers/openLink.ts @@ -38,7 +38,7 @@ const appSchemeURL = (url: string, browser: string): string => { const addProtocol = (url: string): string => { if (!url.toLowerCase().startsWith('http')) { - return `https://${url}`; + return `https://${url.replace('//', '')}`; } return url; };