Skip to content

Commit

Permalink
Renault: fix hvacStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
andig committed Jun 2, 2024
1 parent 68cc29a commit 9ea73de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vehicle/renault/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (v *Provider) Climater() (bool, error) {
return false, err
}

return res.Data.Attributes.HvacStatus > 0, nil
return res.Data.Attributes.HvacStatus == 2, nil
}

var _ api.Resurrector = (*Provider)(nil)
Expand Down

0 comments on commit 9ea73de

Please sign in to comment.