1
0
mirror of git://jb55.com/damus synced 2024-09-18 19:23:49 +00:00

status: add missing status to some thread event views

This commit is contained in:
William Casarin 2023-08-23 16:31:10 -07:00
parent bf3ca4a186
commit db59f74970

View File

@ -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)
}