Working on fixing a Quick Climate Preset
All checks were successful
Golan Testing / testing (1.24.x, ubuntu-latest) (push) Successful in 24s

This commit is contained in:
2025-05-31 14:18:31 -04:00
parent d85017d432
commit e94b769d61

View File

@ -516,10 +516,10 @@ func (v *Vehicle) GetClimateQuickPresets() {
v.client.logger.Error("error while parsing json", "request", "GetClimatePresets", "error", err.Error())
}
re1 := regexp.MustCompile(`\"`)
result := re1.ReplaceAllString(string(tmp.Data), "")
re2 := regexp.MustCompile(`\\`)
result = re2.ReplaceAllString(result, `"`) // \u0022
// re1 := regexp.MustCompile(`\"`)
// result := re1.ReplaceAllString(string(tmp.Data), "")
re := regexp.MustCompile(`\\`)
result := re.ReplaceAllString(string(tmp.Data), "") // \u0022
var cProfiles []ClimateProfile
err = json.Unmarshal([]byte(result), &cProfiles)