dengbiao 1 week ago
parent
commit
3d89985a08
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      internal/logic/app/group_app.go

+ 1
- 1
internal/logic/app/group_app.go View File

@@ -116,7 +116,7 @@ func (*groupApp) AddMembers(ctx context.Context, userId, groupId int64, userIds
if err != nil {
return nil, err
}
if int64(group.UserNum)+int64(len(userIds)) >= 1000 {
if int64(group.UserNum)+int64(len(userIds)) > 1000 {
return nil, errors.New("群人员数量已满!")
}



Loading…
Cancel
Save