mirror of
https://github.com/thelounge/thelounge
synced 2024-11-11 07:04:18 +00:00
Merge pull request #3717 from thelounge/xpaw/fix-username
Undo username pattern
This commit is contained in:
commit
8b71e6a18e
2 changed files with 1 additions and 2 deletions
|
@ -105,7 +105,6 @@
|
|||
ref="usernameInput"
|
||||
class="input username"
|
||||
name="username"
|
||||
pattern="[^\s:!@]+"
|
||||
:value="defaults.username"
|
||||
maxlength="100"
|
||||
/>
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue