mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Fix bug in instant view when quoting another person
This commit is contained in:
parent
86ef977224
commit
5b0c47dba7
1 changed files with 1 additions and 1 deletions
|
@ -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>`
|
||||
: ''
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue