Fix links in note tweets

This commit is contained in:
dangered wolf 2023-08-17 20:08:49 -04:00
parent fc4af168f6
commit 533695304c
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -110,7 +110,7 @@ const populateTweetProperties = async (
noteTweetText /*&& mediaList.length <= 0 && tweet.legacy.entities?.urls?.length <= 0*/ noteTweetText /*&& mediaList.length <= 0 && tweet.legacy.entities?.urls?.length <= 0*/
) { ) {
console.log('We meet the conditions to use new note tweets'); 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; apiTweet.is_note_tweet = true;
} else { } else {
apiTweet.is_note_tweet = false; apiTweet.is_note_tweet = false;