From d55bd95c720a9669c9e4c31ee0064b82ea7b1f7e Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 5 May 2023 08:54:06 +0800 Subject: [PATCH] Fix link detection --- src/utils/isMastodonLinkMaybe.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/isMastodonLinkMaybe.jsx b/src/utils/isMastodonLinkMaybe.jsx index ea63202b..9e070006 100644 --- a/src/utils/isMastodonLinkMaybe.jsx +++ b/src/utils/isMastodonLinkMaybe.jsx @@ -1,6 +1,6 @@ export default function isMastodonLinkMaybe(url) { + const { pathname } = new URL(url); return ( - /^https:\/\/.*\/\d+$/i.test(url) || - /^https:\/\/.*\/notes\/[a-z0-9]+$/i.test(url) // Misskey, Calckey + /^\/.*\/\d+$/i.test(pathname) || /^\/notes\/[a-z0-9]+$/i.test(pathname) // Misskey, Calckey ); }