From 533695304ccc0e6199b8620cc04ef75536982dfd Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Thu, 17 Aug 2023 20:08:49 -0400 Subject: [PATCH] Fix links in note tweets --- src/api/status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/status.ts b/src/api/status.ts index 1fde4f8..e5057c8 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -110,7 +110,7 @@ const populateTweetProperties = async ( noteTweetText /*&& mediaList.length <= 0 && tweet.legacy.entities?.urls?.length <= 0*/ ) { console.log('We meet the conditions to use new note tweets'); - apiTweet.text = unescapeText(noteTweetText); + apiTweet.text = unescapeText(linkFixer(tweet, noteTweetText)); apiTweet.is_note_tweet = true; } else { apiTweet.is_note_tweet = false;