feat: Introduce Language-Specific Comment Detection Tool and Standardize Log Filename Convention (#1992)

* feat: optimize openim reset code

* feat: optimize openim reset code

* feat: optimize openim reset code

* feat: optimize openim reset code

* feat: optimize openim reset code

* feat: optimize openim reset code

* feat: optimize openim reset code

* feat: optimize openim reset code
This commit is contained in:
Xinwei Xiong
2024-03-04 17:30:17 +08:00
committed by GitHub
parent 853ac47e42
commit 02a3cfb021
25 changed files with 224 additions and 40 deletions
+1 -1
View File
@@ -974,7 +974,7 @@ func (s *groupServer) SetGroupInfo(ctx context.Context, req *pbgroup.SetGroupInf
if len(update) == 0 {
return resp, nil
}
if updateErr := s.db.UpdateGroup(ctx, group.GroupID, update); updateErr != nil {
if err := s.db.UpdateGroup(ctx, group.GroupID, update); err != nil {
return nil, err
}
group, err = s.db.TakeGroup(ctx, req.GroupInfoForSet.GroupID)