From e35b913d23d458faa2125bbb6871cc20fb318061 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Thu, 17 Jun 2021 10:31:35 -0500 Subject: [PATCH] Show entities from original status in a quote status. Fixes #3080 --- Account/Sources/Account/FeedProvider/Twitter/TwitterStatus.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Account/Sources/Account/FeedProvider/Twitter/TwitterStatus.swift b/Account/Sources/Account/FeedProvider/Twitter/TwitterStatus.swift index 149814667..affe9ff64 100644 --- a/Account/Sources/Account/FeedProvider/Twitter/TwitterStatus.swift +++ b/Account/Sources/Account/FeedProvider/Twitter/TwitterStatus.swift @@ -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 += "
" if let userHTML = quotedStatus.user?.renderAsHTML() { html += userHTML