Return error if we fail to read the response body

This commit is contained in:
Till Faelligen 2022-10-17 07:27:11 +02:00
parent 81dbad39a3
commit 83c9dde219
No known key found for this signature in database
GPG Key ID: 3DF82D8AB9211D4E

View File

@ -179,7 +179,10 @@ func sharedSecretRegister(sharedSecret, serverURL, localpart, password string, a
body, _ = io.ReadAll(regResp.Body)
return "", fmt.Errorf(gjson.GetBytes(body, "error").Str)
}
r, _ := io.ReadAll(regResp.Body)
r, err := io.ReadAll(regResp.Body)
if err != nil {
return "", fmt.Errorf("failed to read response body (HTTP %d): %w", regResp.StatusCode, err)
}
return gjson.GetBytes(r, "access_token").Str, nil
}