this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Better regex for account URLs

+1 -1
+1 -1
src/components/account-sheet.jsx
··· 59 59 }); 60 60 if (result.accounts.length) { 61 61 return result.accounts[0]; 62 - } else if (/https?:\/\/[^/]+\/@/.test(account)) { 62 + } else if (/^https?:\/\/[^/]+\/@[^/]+$/.test(account)) { 63 63 const accountURL = URL.parse(account); 64 64 if (accountURL) { 65 65 const { hostname, pathname } = accountURL;