Autocheck fixed

This commit is contained in:
Roman Nikitin 2020-09-22 12:37:18 +03:00
parent f8268d4ac0
commit e013e9b9db
1 changed files with 2 additions and 2 deletions

View File

@ -237,14 +237,14 @@ func (c *Client) Connect() error {
Arguments: "?" + query.Encode(),
AuthToken: authToken,
}
queryJson, err := json.Marshal(querySingle)
queryJSON, err := json.Marshal(querySingle)
if err != nil {
logrus.Errorf("Failed to parse init message %v", err)
return err
}
// Send Json
logrus.Debugf("Sending arguments and auth-token")
err = c.write(queryJson)
err = c.write(queryJSON)
if err != nil {
return err
}