Skip to content
Snippets Groups Projects
Commit 0215d0da authored by Klaus-Dieter Quibeldey-Cirkel's avatar Klaus-Dieter Quibeldey-Cirkel
Browse files

replace * with . for invalid character

parent 9faf086f
No related merge requests found
......@@ -50,7 +50,7 @@ export class RoomCreateComponent implements OnInit {
resetInvalidCharacters(): void {
if (this.customShortIdName) {
this.customShortIdName = this.customShortIdName.replace(/[^a-zA-Z0-9\_\-\*\~]+/gi, '');
this.customShortIdName = this.customShortIdName.replace(/[^a-zA-Z0-9_\-.~]+/gi, '');
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment