From 4e8745e410f8c1cbcdd1cc4896ee9c3f0ee25b50 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 7 Mar 2025 12:13:23 +0800 Subject: [PATCH] Support snac2 links --- src/utils/isMastodonLinkMaybe.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/isMastodonLinkMaybe.js b/src/utils/isMastodonLinkMaybe.js index 780585c4..ed820c47 100644 --- a/src/utils/isMastodonLinkMaybe.js +++ b/src/utils/isMastodonLinkMaybe.js @@ -13,6 +13,7 @@ export default function isMastodonLinkMaybe(url) { /^\/ap\/note\/[a-z0-9\-_]+$/i.test(pathname) || // BotKit, Fedify (/(fed|bsky)\.brid\.gy/i.test(hostname) && pathname.startsWith('/r/http')) || // Bridgy Fed + /^\/[^\/]+\/p\/\d+\.\d+$/i.test(pathname) || // snac2 /#\/[^\/]+\.[^\/]+\/s\/.+/i.test(hash) // Phanpy 🫣 ); } catch (e) {