Skip to content

Commit

Permalink
fix(EU): window status (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwillemsen committed Jan 23, 2024
1 parent ef9d04a commit 1ce1c7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hyundai_kia_connect_api/KiaUvoApiEU.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,10 +446,10 @@ def _update_vehicle_properties_ccs2(self, vehicle: Vehicle, state: dict) -> None

vehicle.hood_is_open = get_child_value(state, "Body.Hood.Open")
vehicle.front_left_window_is_open = get_child_value(
state, "Cabin.Window.Row1.Open.Driver.Open"
state, "Cabin.Window.Row1.Driver.Open"
)
vehicle.front_right_window_is_open = get_child_value(
state, "Cabin.Window.Row1.Open.Passenger.Open"
state, "Cabin.Window.Row1.Passenger.Open"
)
vehicle.back_left_window_is_open = get_child_value(
state, "Cabin.Window.Row2.Left.Open"
Expand Down

0 comments on commit 1ce1c7e

Please sign in to comment.