mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-19 03:14:00 +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}
|
${!isQuote && status.quote ? generateStatus(status.quote, author, true, null) : notApplicableComment}
|
||||||
`.format({
|
`.format({
|
||||||
quoteHeader: isQuote
|
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