From 21d1e672cd31ff66ba65796ff23e526bf73a104b Mon Sep 17 00:00:00 2001 From: Gordon <1432970085@qq.com> Date: Tue, 27 Jun 2023 21:19:57 +0800 Subject: [PATCH] fix: conversation update --- internal/rpc/conversation/conversaion.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/rpc/conversation/conversaion.go b/internal/rpc/conversation/conversaion.go index 9af5baad8..a664fadeb 100644 --- a/internal/rpc/conversation/conversaion.go +++ b/internal/rpc/conversation/conversaion.go @@ -210,6 +210,9 @@ func (c *conversationServer) SetConversations(ctx context.Context, req *pbConver if req.Conversation.IsPinned != nil { m["is_pinned"] = req.Conversation.IsPinned.Value } + if req.Conversation.GroupAtType != nil { + m["group_at_type"] = req.Conversation.GroupAtType.Value + } if req.Conversation.IsPrivateChat != nil { var conversations []*tableRelation.ConversationModel for _, ownerUserID := range req.UserIDs {