this repo has no description
0
fork

Configure Feed

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

Handle GoToSocial links

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