diff --git a/src/clean_url.js b/src/clean_url.js index 06230a9f..e35c2752 100644 --- a/src/clean_url.js +++ b/src/clean_url.js @@ -51,6 +51,7 @@ const deSafelink = (urlStr) => { // WhatsApp if (url.hostname === 'l.wl.co' && url.pathname === '/l') { + url = new URL(decodeURIComponent(url.href.replaceAll('&', '&'))) url = new URL(url.searchParams.get('u')) }