From 8184ae62ed62b570a7723cc5766db825478b1ac0 Mon Sep 17 00:00:00 2001 From: Pascal Precht <445106+0x-r4bbit@users.noreply.github.com> Date: Tue, 4 Jul 2023 13:51:21 +0200 Subject: [PATCH] fix: mark community as no longer spectated when joined Fixes https://github.com/status-im/status-desktop/issues/11334 --- protocol/communities/community.go | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol/communities/community.go b/protocol/communities/community.go index 8f6ce0ab6..6567ffc57 100644 --- a/protocol/communities/community.go +++ b/protocol/communities/community.go @@ -928,6 +928,7 @@ func (o *Community) Edit(description *protobuf.CommunityDescription) { func (o *Community) Join() { o.config.Joined = true + o.config.Spectated = false } func (o *Community) Leave() {