this repo has no description
0
fork

Configure Feed

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

Remove dup regex, add another GTS url pattern

+1 -2
+1 -2
src/utils/isMastodonLinkMaybe.jsx
··· 3 3 const { pathname, hash } = new URL(url); 4 4 return ( 5 5 /^\/.*\/\d+$/i.test(pathname) || 6 - /^\/@[^/]+\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe 6 + /^\/(@[^/]+|users\/[^/]+)\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe 7 7 /^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Firefish 8 - /^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Calckey 9 8 /^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) || // Pleroma 10 9 /#\/[^\/]+\.[^\/]+\/s\/.+/i.test(hash) // Phanpy 🫣 11 10 );