1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-27 21:05:53 +00:00

convert serverID

This commit is contained in:
Kane York 2016-06-02 08:30:49 -07:00
parent 80179abc36
commit cd7faaba38
2 changed files with 11 additions and 5 deletions

View file

@ -58,7 +58,7 @@ func SealRequest(form url.Values) (url.Values, error) {
retval := url.Values{
"nonce": []string{nonceString},
"msg": []string{cipherString},
"id": []string{strconv.Itoa(serverID)},
"id": []string{strconv.Itoa(Backend.serverID)},
}
return retval, nil