Explorar el Código

update

master
DengBiao hace 11 meses
padre
commit
c5e7028e21
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      internal/logic/app/group_app.go

+ 2
- 2
internal/logic/app/group_app.go Ver fichero

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

existIds, addedIds, err := group.AddMembers(ctx, userIds)


Cargando…
Cancelar
Guardar