This commit is contained in:
Zack Scholl 2017-10-21 15:32:00 -06:00
parent d38a5cdd99
commit dc23087dbc
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ func (r *Relay) clientCommuncation(id int, connection net.Conn) {
sendMessage("who?", connection)
m := strings.Split(receiveMessage(connection), ".")
if len(m) != 3 {
if len(m) < 3 {
sendMessage("not enough information", connection)
return
}