Skip to content

Commit

Permalink
Fix bug in instant view when quoting another person
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeredwolf committed May 1, 2024
1 parent 86ef977 commit 5b0c47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/instantview.ts
Expand Up @@ -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>`
: ''
});
};
Expand Down

0 comments on commit 5b0c47d

Please sign in to comment.