From b7416bc17d772c180cfc43585e4036126db16941 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 28 Sep 2023 11:19:24 +0800 Subject: [PATCH] Handle Takahe links --- src/utils/isMastodonLinkMaybe.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/isMastodonLinkMaybe.jsx b/src/utils/isMastodonLinkMaybe.jsx index bc3a31ef..7e029d2a 100644 --- a/src/utils/isMastodonLinkMaybe.jsx +++ b/src/utils/isMastodonLinkMaybe.jsx @@ -2,7 +2,7 @@ export default function isMastodonLinkMaybe(url) { const { pathname } = new URL(url); return ( /^\/.*\/\d+$/i.test(pathname) || - /^\/@[^/]+\/statuses\/\w+$/i.test(pathname) || // GoToSocial + /^\/@[^/]+\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe /^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Calckey /^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) // Pleroma );