Show entities from original status in a quote status. Fixes #3080

This commit is contained in:
Maurice Parker 2021-06-17 10:31:35 -05:00
parent 7fc29837a1
commit e35b913d23
1 changed files with 1 additions and 0 deletions

View File

@ -165,6 +165,7 @@ private extension TwitterStatus {
func renderAsQuoteHTML(_ quotedStatus: TwitterStatus, topLevel: Bool) -> String {
var html = String()
html += renderAsTweetHTML(self, topLevel: topLevel)
html += extendedEntities?.renderAsHTML() ?? ""
html += "<blockquote>"
if let userHTML = quotedStatus.user?.renderAsHTML() {
html += userHTML