From 492e9ae0655cf8b6f806485290c175a04b0fe901 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Mon, 20 Apr 2020 07:37:06 -0500 Subject: [PATCH] Simplified html for tweet timestamp. --- Frameworks/Account/FeedProvider/Twitter/TwitterStatus.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Frameworks/Account/FeedProvider/Twitter/TwitterStatus.swift b/Frameworks/Account/FeedProvider/Twitter/TwitterStatus.swift index a33b481a7..30d532c19 100644 --- a/Frameworks/Account/FeedProvider/Twitter/TwitterStatus.swift +++ b/Frameworks/Account/FeedProvider/Twitter/TwitterStatus.swift @@ -117,9 +117,7 @@ private extension TwitterStatus { let dateFormatter = DateFormatter() dateFormatter.dateStyle = .medium dateFormatter.timeStyle = .short - html += "" - html += "
\(dateFormatter.string(from: createdAt))
" - html += "
" + html += "\(dateFormatter.string(from: createdAt))" } return html