From 1765defa5692c96f228b9025e520acc6f3852e23 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 28 Dec 2023 15:42:27 +0800 Subject: [PATCH] Remove dup regex, add another GTS url pattern --- src/utils/isMastodonLinkMaybe.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/utils/isMastodonLinkMaybe.jsx b/src/utils/isMastodonLinkMaybe.jsx index a0adb3a9..78873536 100644 --- a/src/utils/isMastodonLinkMaybe.jsx +++ b/src/utils/isMastodonLinkMaybe.jsx @@ -3,9 +3,8 @@ export default function isMastodonLinkMaybe(url) { const { pathname, hash } = new URL(url); return ( /^\/.*\/\d+$/i.test(pathname) || - /^\/@[^/]+\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe + /^\/(@[^/]+|users\/[^/]+)\/(statuses|posts)\/\w+\/?$/i.test(pathname) || // GoToSocial, Takahe /^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Firefish - /^\/notes\/[a-z0-9]+$/i.test(pathname) || // Misskey, Calckey /^\/(notice|objects)\/[a-z0-9-]+$/i.test(pathname) || // Pleroma /#\/[^\/]+\.[^\/]+\/s\/.+/i.test(hash) // Phanpy 🫣 );