this repo has no description
0
fork

Configure Feed

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

Fix link detection

+2 -2
+2 -2
src/utils/isMastodonLinkMaybe.jsx
··· 1 1 export default function isMastodonLinkMaybe(url) { 2 + const { pathname } = new URL(url); 2 3 return ( 3 - /^https:\/\/.*\/\d+$/i.test(url) || 4 - /^https:\/\/.*\/notes\/[a-z0-9]+$/i.test(url) // Misskey, Calckey 4 + /^\/.*\/\d+$/i.test(pathname) || /^\/notes\/[a-z0-9]+$/i.test(pathname) // Misskey, Calckey 5 5 ); 6 6 }