Fixed issue with key not properly being required for channel.

This commit is contained in:
justin 2015-08-01 23:18:06 -04:00
parent c9d9191a5a
commit e93564e777
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ func (c *Channel) Join(client *Client, key string) {
if err != nil {
println(err.Error())
}
return
}
}
operator := len(c.members) == 0