1
Fork 0

Move check for incorrect username earlier.

This commit is contained in:
Juliusz Chroboczek 2020-05-30 13:23:31 +02:00
parent 50ad751e7d
commit e28a390ab9
1 changed files with 5 additions and 5 deletions

View File

@ -211,6 +211,11 @@ func startClient(conn *websocket.Conn) (err error) {
return
}
if strings.ContainsRune(m.Username, ' ') {
err = userError("don't put spaces in your username")
return
}
c := &webClient{
id: m.Id,
username: m.Username,
@ -244,11 +249,6 @@ func startClient(conn *websocket.Conn) (err error) {
c.writerDone = make(chan struct{})
go clientWriter(conn, c.writeCh, c.writerDone)
if strings.ContainsRune(m.Username, ' ') {
err = userError("don't put spaces in your username")
return
}
g, users, err := addClient(m.Group, c, m.Username, m.Password)
if err != nil {
return