diff --git a/Mastodon/In Progress New Layout and Datamodel/NotificationRowView.swift b/Mastodon/In Progress New Layout and Datamodel/NotificationRowView.swift index 8fbfaf511..e3e2432fc 100644 --- a/Mastodon/In Progress New Layout and Datamodel/NotificationRowView.swift +++ b/Mastodon/In Progress New Layout and Datamodel/NotificationRowView.swift @@ -637,7 +637,12 @@ func boldedNameStringComponent(_ name: String) -> AttributedString { return nameComponent } -let metaTextForHtmlToAttributedStringConversion = MetaText() +let metaTextForHtmlToAttributedStringConversion = { + let meta = MetaText() + meta.textAttributes = [:] + meta.linkAttributes = [:] + return meta +}() func attributedString( fromHtml html: String, emojis: [MastodonContent.Shortcode: String] ) -> AttributedString {