From db59f7497005c9db0aa8ff25140e2baa60fdea98 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Wed, 23 Aug 2023 16:31:10 -0700 Subject: [PATCH] status: add missing status to some thread event views --- damus/Views/Events/EventShell.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/damus/Views/Events/EventShell.swift b/damus/Views/Events/EventShell.swift index 6b1685ce..930a8da9 100644 --- a/damus/Views/Events/EventShell.swift +++ b/damus/Views/Events/EventShell.swift @@ -68,6 +68,8 @@ struct EventShell: 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) }