Undo username pattern
This commit is contained in:
parent
e8ba4f4fb9
commit
0dd0d8fb12
@ -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 New Issue
Block a user