Fixing build issues

This commit is contained in:
MichaelOultram 2015-07-28 17:08:58 +01:00
parent 5af3936660
commit 84267809ca

2
web.go
View file

@ -55,7 +55,7 @@ func GetWebAddress(user *gumble.User) {
}
// dealing with collisions
var firstLoop = true
for !firstLoop && token_client[client_token[user.Name]] == "" {
for firstLoop || token_client[client_token[user.Name]] != "" {
client_token[user.Name] = randSeq(10)
firstLoop = false
}