More changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 24s
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 24s
This commit is contained in:
@ -440,7 +440,7 @@ func (v *Vehicle) GetClimateQuickPresets() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
v.client.logger.Error("error while parsing http output json", "request", "GetClimateQuickPresets", "error", err.Error())
|
v.client.logger.Error("error while parsing http output json", "request", "GetClimateQuickPresets", "error", err.Error())
|
||||||
}
|
}
|
||||||
v.client.logger.Debug("CLIMATE SETTINGS OUTPUT", "body", respParsed)
|
v.client.logger.Debug("quick climate presets parsed http output", "body", respParsed)
|
||||||
|
|
||||||
// ONLY FOR THAT REQUEST BECAUSE OF API SENDS BACK ESCAPING DATA IN DATA FIELD
|
// ONLY FOR THAT REQUEST BECAUSE OF API SENDS BACK ESCAPING DATA IN DATA FIELD
|
||||||
data, ok := respParsed.Path("data").Data().(string)
|
data, ok := respParsed.Path("data").Data().(string)
|
||||||
@ -483,7 +483,7 @@ func (v *Vehicle) GetClimatePresets() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
v.client.logger.Error("error while parsing json", "request", "GetClimatePresets", "error", err.Error())
|
v.client.logger.Error("error while parsing json", "request", "GetClimatePresets", "error", err.Error())
|
||||||
}
|
}
|
||||||
v.client.logger.Debug("CLIMATE SUBARU SETTINGS OUTPUT", "body", respParsed)
|
v.client.logger.Debug("subaru climate presets parsed http output", "body", respParsed)
|
||||||
|
|
||||||
// ONLY FOR THAT REQUEST BECAUSE OF API SENDS BACK ESCAPING DATA IN DATA FIELD
|
// ONLY FOR THAT REQUEST BECAUSE OF API SENDS BACK ESCAPING DATA IN DATA FIELD
|
||||||
data, ok := respParsed.Path("data").Data().(string)
|
data, ok := respParsed.Path("data").Data().(string)
|
||||||
@ -526,7 +526,7 @@ func (v *Vehicle) GetClimateUserPresets() {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
v.client.logger.Error("error while parsing json", "request", "GetClimateUserPresets", "error", err.Error())
|
v.client.logger.Error("error while parsing json", "request", "GetClimateUserPresets", "error", err.Error())
|
||||||
}
|
}
|
||||||
v.client.logger.Debug("CLIMATE USER SETTINGS OUTPUT", "body", respParsed)
|
v.client.logger.Debug("user climate presets parsed http output", "body", respParsed)
|
||||||
|
|
||||||
// ONLY FOR THAT REQUEST BECAUSE OF API SENDS BACK ESCAPING DATA IN DATA FIELD
|
// ONLY FOR THAT REQUEST BECAUSE OF API SENDS BACK ESCAPING DATA IN DATA FIELD
|
||||||
data, ok := respParsed.Path("data").Data().(string)
|
data, ok := respParsed.Path("data").Data().(string)
|
||||||
|
Reference in New Issue
Block a user