commit f88718d56e7319dc0a33bb921a1efdd5ede5cc85
parent b6a7f52596aff4208e526a9bc3c3a65b591f01ad
Author: Joel Klabo <joelklabo@gmail.com>
Date: Wed, 1 Mar 2023 17:21:41 -0800
Render Links etc. in Notification Summaries
Changelog-Fixed: Render links in notification summaries
Closes: #721
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)
}