diff --git a/VERSION b/VERSION index f58f654fe..befd7323f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.141.3 +0.141.4 diff --git a/protocol/chat.go b/protocol/chat.go index 3523decc2..6d85ec0c8 100644 --- a/protocol/chat.go +++ b/protocol/chat.go @@ -229,7 +229,7 @@ func (c *Chat) PrivateGroupChat() bool { } func (c *Chat) IsActivePersonalChat() bool { - return c.Active && (c.OneToOne() || c.PrivateGroupChat() && c.Public()) && c.CommunityID == "" + return c.Active && (c.OneToOne() || c.PrivateGroupChat() || c.Public()) && c.CommunityID == "" } func (c *Chat) CommunityChatID() string {