this repo has no description
0
fork

Configure Feed

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

Try resolve threads' links if they work one day

+1
+1
src/utils/isMastodonLinkMaybe.jsx
··· 6 6 /^\/(@[^/]+|users\/[^/]+)\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe 7 7 /^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Firefish 8 8 /^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) || // Pleroma 9 + /^\/@[^/]+\/post\/[a-z0-9]+$/i.test(pathname) || // Threads 9 10 /#\/[^\/]+\.[^\/]+\/s\/.+/i.test(hash) // Phanpy 🫣 10 11 ); 11 12 } catch (e) {