From abf736ec2ac93b087cc0b860100eea1570f41e5f Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 2 Jan 2023 18:53:16 -0800 Subject: [PATCH] Fix bug where boost event is loaded in the thread instead of the boosted event Changelog-Fixed: Fix bug where boost event is loaded in the thread instead of the boosted event --- damus/Views/TimelineView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/TimelineView.swift b/damus/Views/TimelineView.swift index 9e7e2b3..63cdec2 100644 --- a/damus/Views/TimelineView.swift +++ b/damus/Views/TimelineView.swift @@ -30,7 +30,7 @@ struct InnerTimelineView: View { NavigationLink(destination: BuildThreadV2View( damus: damus, - event_id: ev.id + event_id: (ev.inner_event ?? ev).id )) { EventView(event: ev, highlight: .none, has_action_bar: true, damus: damus, show_friend_icon: show_friend_icon) }