Skip to content

Commit

Permalink
Renault: fix climater
Browse files Browse the repository at this point in the history
  • Loading branch information
andig committed Sep 11, 2024
1 parent dbfce59 commit fd586a3
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 @@ -150,7 +150,7 @@ func (v *Provider) Climater() (bool, error) {
return false, api.ErrNotAvailable
}

active := !slices.Contains([]string{"off", "false", "invalid", "error"}, state)
active := !slices.Contains([]string{"off", "false", "invalid", "error", "unavailable"}, state)
return active, nil
}

Expand Down

0 comments on commit fd586a3

Please sign in to comment.