damus

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

commit db59f7497005c9db0aa8ff25140e2baa60fdea98
parent bf3ca4a1869adc15d614c3976a62b8db3276377b
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 23 Aug 2023 16:31:10 -0700

status: add missing status to some thread event views

Diffstat:
Mdamus/Views/Events/EventShell.swift | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/damus/Views/Events/EventShell.swift b/damus/Views/Events/EventShell.swift @@ -68,6 +68,8 @@ struct EventShell<Content: View>: View { VStack(alignment: .leading) { EventTop(state: state, event: event, pubkey: pubkey, is_anon: is_anon) + UserStatusView(status: state.profiles.profile_data(pubkey).status) + if !options.contains(.no_replying_to) { ReplyPart(events: state.events, event: event, privkey: state.keypair.privkey, profiles: state.profiles) }