this repo has no description
0
fork

Configure Feed

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

Unfurl BotKit/Fedify links

+1
+1
src/utils/isMastodonLinkMaybe.js
··· 8 8 /^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) || // Pleroma 9 9 /^\/@[^/]+\/post\/[a-z0-9\-_]+$/i.test(pathname) || // Threads 10 10 /^\/@[^/]+\/[a-z0-9]+[a-z0-9\-]+[a-z0-9]+$/i.test(pathname) || // Hollo 11 + /^\/ap\/note\/[a-z0-9\-_]+$/i.test(pathname) || // BotKit, Fedify 11 12 (hostname === 'fed.brid.gy' && pathname.startsWith('/r/http')) || // Bridgy Fed 12 13 /#\/[^\/]+\.[^\/]+\/s\/.+/i.test(hash) // Phanpy 🫣 13 14 );