Fix bug in instant view when quoting another person

This commit is contained in:
dangered wolf 2024-04-30 21:41:14 -04:00
parent 86ef977224
commit 5b0c47dba7
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -290,7 +290,7 @@ const generateStatus = (
${!isQuote && status.quote ? generateStatus(status.quote, author, true, null) : notApplicableComment}
`.format({
quoteHeader: isQuote
? `<h4><a href="${status.url}">Quoting</a> ${author.name} (<a href="${Constants.TWITTER_ROOT}/${author.screen_name}">@${author.screen_name}</a>)</h4>`
? `<h4><a href="${status.url}">Quoting</a> ${status.author.name} (<a href="${Constants.TWITTER_ROOT}/${status.author.screen_name}">@${status.author.screen_name}</a>)</h4>`
: ''
});
};