From f88718d56e7319dc0a33bb921a1efdd5ede5cc85 Mon Sep 17 00:00:00 2001 From: Joel Klabo Date: Wed, 1 Mar 2023 17:21:41 -0800 Subject: [PATCH] Render Links etc. in Notification Summaries Changelog-Fixed: Render links in notification summaries Closes: #721 --- damus/Views/Notifications/EventGroupView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/Notifications/EventGroupView.swift b/damus/Views/Notifications/EventGroupView.swift index 9aa583bc..2fccb285 100644 --- a/damus/Views/Notifications/EventGroupView.swift +++ b/damus/Views/Notifications/EventGroupView.swift @@ -210,7 +210,7 @@ struct EventGroupView: View { let thread = ThreadModel(event: event, damus_state: state) let dest = ThreadView(state: state, thread: thread) NavigationLink(destination: dest) { - Text(event.content) + Text(render_note_content(ev: event, profiles: state.profiles, privkey: state.keypair.privkey).content) .padding([.top], 1) .foregroundColor(.gray) }