Fixing build issues
This commit is contained in:
parent
5af3936660
commit
84267809ca
2
web.go
2
web.go
|
@ -55,7 +55,7 @@ func GetWebAddress(user *gumble.User) {
|
||||||
}
|
}
|
||||||
// dealing with collisions
|
// dealing with collisions
|
||||||
var firstLoop = true
|
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)
|
client_token[user.Name] = randSeq(10)
|
||||||
firstLoop = false
|
firstLoop = false
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue