This commit is contained in:
withchao
2023-01-29 16:10:30 +08:00
parent cf4499e958
commit 29a78c469d
2 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -259,7 +259,7 @@ func (s *groupServer) GetJoinedGroupList(ctx context.Context, req *pbGroup.GetJo
groupNode.NotificationUpdateTime = group.NotificationUpdateTime.UnixMilli()
resp.GroupList = append(resp.GroupList, &groupNode)
}
resp.Total = int32(len(resp.GroupList))
resp.Total = uint32(len(resp.GroupList))
return resp, nil
}