Merge pull request #3717 from thelounge/xpaw/fix-username

Undo username pattern
This commit is contained in:
Pavel Djundik 2020-01-27 11:06:17 +02:00 committed by GitHub
commit 8b71e6a18e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -105,7 +105,6 @@
ref="usernameInput"
class="input username"
name="username"
pattern="[^\s:!@]+"
:value="defaults.username"
maxlength="100"
/>

View File

@ -75,7 +75,7 @@ Network.prototype.validate = function(client) {
this.username = this.nick.replace(/[^a-zA-Z0-9]/g, "");
}
this.username = cleanNick(this.username) || "thelounge";
this.username = cleanString(this.username) || "thelounge";
this.realname = cleanString(this.realname) || "The Lounge User";
this.password = cleanString(this.password);
this.host = cleanString(this.host);