More changes
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 23s
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 23s
This commit is contained in:
@ -516,10 +516,10 @@ func (v *Vehicle) GetClimateQuickPresets() {
|
|||||||
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())
|
||||||
}
|
}
|
||||||
|
|
||||||
// re1 := regexp.MustCompile(`\"`)
|
re1 := regexp.MustCompile(`\"`)
|
||||||
// result := re1.ReplaceAllString(string(tmp.Data), "")
|
result := re1.ReplaceAllString(string(tmp.Data), "")
|
||||||
re := regexp.MustCompile(`\\`)
|
re2 := regexp.MustCompile(`\\`)
|
||||||
result := re.ReplaceAllString(string(tmp.Data), ``) // \u0022
|
result = re2.ReplaceAllString(result, ``) // \u0022
|
||||||
v.client.logger.Debug("quick climate preset after trimming", "request", "GetClimateQuickPresets", "body", result)
|
v.client.logger.Debug("quick climate preset after trimming", "request", "GetClimateQuickPresets", "body", result)
|
||||||
|
|
||||||
var cProfile ClimateProfile
|
var cProfile ClimateProfile
|
||||||
|
Reference in New Issue
Block a user