mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 20:38:55 +03:00
Change client-side validation of group IDs to match synapse
This commit is contained in:
parent
deebd4cbcf
commit
53938f7998
1 changed files with 2 additions and 2 deletions
|
@ -55,8 +55,8 @@ export default React.createClass({
|
|||
|
||||
_checkGroupId: function(e) {
|
||||
let error = null;
|
||||
if (!/^[a-zA-Z0-9]*$/.test(this.state.groupId)) {
|
||||
error = _t("Community IDs may only contain alphanumeric characters");
|
||||
if (!/^[a-z0-9=_-\.\/]*$/.test(this.state.groupId)) {
|
||||
error = _t("Community IDs may only contain characters a-z, 0-9, or '=_-./'");
|
||||
}
|
||||
this.setState({
|
||||
groupIdError: error,
|
||||
|
|
Loading…
Reference in a new issue