Commit 78003fdc authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Disallow usernames with spaces.

parent 563545bd
......@@ -12,6 +12,7 @@ import (
"log"
"math"
"os"
"strings"
"sync"
"sync/atomic"
"time"
......@@ -151,6 +152,11 @@ 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
......
Markdown is supported
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