do not add new members if closed group size >= 10

pull/859/head
Audric Ackermann 5 years ago
parent b4c3dad4c9
commit b4f1afe720
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -2488,9 +2488,6 @@
"message": "Profile name cannot be empty", "message": "Profile name cannot be empty",
"description": "Error message displayed on empty profile name" "description": "Error message displayed on empty profile name"
}, },
"maxGroupMembersError": {
"message": "Max number of members for small group chats is: "
},
"nonAdminDeleteMember": { "nonAdminDeleteMember": {
"message": "Only group admin can remove members!" "message": "Only group admin can remove members!"
}, },
@ -2819,5 +2816,14 @@
"example": "10" "example": "10"
} }
} }
},
"maxGroupMembersError": {
"message": "Max number of members for small group chats is $maxSize$",
"placeholders": {
"maxSize": {
"content": "$1",
"example": "10"
}
}
} }
} }

@ -72,11 +72,9 @@
// Do not trigger an update if there is too many members // Do not trigger an update if there is too many members
if ( if (
newMembers.length + existingMembers.length > newMembers.length + existingMembers.length >
window.SMALL_GROUP_SIZE_LIMIT window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT
) { ) {
const msg = `${window.i18n('maxGroupMembersError')} ${ const msg = window.i18n('maxGroupMembersError', window.CONSTANTS.SMALL_GROUP_SIZE_LIMIT);
window.SMALL_GROUP_SIZE_LIMIT
}`;
window.pushToast({ window.pushToast({
title: msg, title: msg,

Loading…
Cancel
Save