Change to never link out to Twitter for photos that are inlined.

This commit is contained in:
Maurice Parker 2020-04-22 22:13:55 -05:00
parent 62ca536717
commit 62e91cfd26

View File

@ -35,13 +35,7 @@ struct TwitterExtendedMedia: Codable {
switch type { switch type {
case "photo": case "photo":
if let url = url { html += renderPhotoAsHTML()
html += "<a href=\"\(url)\">"
html += renderPhotoAsHTML()
html += "</a>"
} else {
html += renderPhotoAsHTML()
}
case "video", "animated_gif": case "video", "animated_gif":
html += renderVideoAsHTML() html += renderVideoAsHTML()
default: default: