@ -2211,7 +2211,7 @@
"androidKey": "activity_create_closed_group_group_name_too_long_error"
},
"pickClosedGroupMember": {
"message": "Please pick at least 2 group members",
"message": "Please pick at least 1 group member",
"androidKey": "activity_create_closed_group_not_enough_group_members_error"
"closedGroupMaxSize": {
@ -1412,7 +1412,7 @@
"message": "Пожалуйста, введите более короткое имя группы"
"message": "Пожалуйста, выберите как минимум 2 участников группы"
"message": "Пожалуйста, выберите как минимум еще 1 участника группы"
"message": "В закрытой группе не может быть больше 10 участников"
@ -68,9 +68,9 @@ async function createClosedGroup(
}
// >= because we add ourself as a member AFTER this. so a 10 group is already invalid as it will be 11 with ourself
// the same is valid with groups count <= 1
// the same is valid with groups count < 1
if (groupMembers.length <= 1) {
if (groupMembers.length < 1) {
ToastUtils.push({
title: window.i18n('pickClosedGroupMember'),
type: 'error',