damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit abf736ec2ac93b087cc0b860100eea1570f41e5f
parent 2cfcc82b2dc9b800b19d0d0f504b004ed346f19d
Author: William Casarin <jb55@jb55.com>
Date:   Mon,  2 Jan 2023 18:53:16 -0800

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

Diffstat:
Mdamus/Views/TimelineView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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) }