Some minor fixes
All checks were successful
Build and Push Docker Image / testing (1.24.x, ubuntu-latest) (push) Successful in 27s
Build and Push Docker Image / build-and-push (push) Successful in 9m52s

This commit is contained in:
2025-06-05 16:46:37 -04:00
parent ae463d6ba3
commit 181275e956
3 changed files with 3 additions and 3 deletions

View File

@ -405,7 +405,7 @@ func (s *MySubaruClient) mySubaruStatusToMQTTMessage(v *mysubaru.Vehicle) []*bus
tq := len(v.Tires)
tc := 1
for n, t := range v.Tires {
tires = tires + `"` + n + `":` + strconv.Itoa(t.Pressure)
tires = tires + `"` + n + `":` + strconv.Itoa(t.PressurePsi)
if tc != tq {
tires = tires + `,`
}