From 2b6beee87560ce0641613ecec88c2b84d4f7f187 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sun, 31 Mar 2024 20:35:24 +0800 Subject: [PATCH] More logic to prevent recursive/wrong quote posts --- src/utils/unfurl-link.jsx | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/utils/unfurl-link.jsx b/src/utils/unfurl-link.jsx index 6d596559..28ed7a42 100644 --- a/src/utils/unfurl-link.jsx +++ b/src/utils/unfurl-link.jsx @@ -83,15 +83,23 @@ function _unfurlMastodonLink(instance, url) { limit: 1, }) .then((results) => { - if (results.statuses.length > 0) { - const status = results.statuses[0]; - return { - status, - instance, - }; - } else { - throw new Error('No results'); + const { statuses } = results; + if (statuses.length > 0) { + // Filter out statuses that has content that contains the URL, in-case-sensitive + const theStatuses = statuses.filter( + (status) => + !status.content?.toLowerCase().includes(theURL.toLowerCase()), + ); + + if (theStatuses.length === 1) { + return { + status: theStatuses[0], + instance, + }; + } + // If there are multiple statuses, give up, something is wrong } + throw new Error('No results'); }); function handleFulfill(result) {