mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 13:33:10 +02:00
decode entity references from tweets
apparently *some* tweets have those ☹
This commit is contained in:
parent
a981bca7a3
commit
1bb5021c54
1 changed files with 2 additions and 1 deletions
|
@ -584,7 +584,8 @@ export class ImportNotesProcessorService {
|
|||
|
||||
try {
|
||||
const date = new Date(tweet.created_at);
|
||||
const textReplaceURLs = tweet.entities.urls && tweet.entities.urls.length > 0 ? await replaceTwitterUrls(tweet.full_text, tweet.entities.urls) : tweet.full_text;
|
||||
const decodedText = tweet.full_text.replaceAll('>','>').replaceAll('<','<').replaceAll('&','&');
|
||||
const textReplaceURLs = tweet.entities.urls && tweet.entities.urls.length > 0 ? await replaceTwitterUrls(decodedText, tweet.entities.urls) : decodedText;
|
||||
const text = tweet.entities.user_mentions && tweet.entities.user_mentions.length > 0 ? await replaceTwitterMentions(textReplaceURLs, tweet.entities.user_mentions) : textReplaceURLs;
|
||||
const files: MiDriveFile[] = [];
|
||||
|
||||
|
|
Loading…
Reference in a new issue