Skip to content

Commit

Permalink
Revert partial update when in SETUP state
Browse files Browse the repository at this point in the history
  • Loading branch information
WebSpider committed Jan 5, 2025
1 parent 1fba4a2 commit 0e9ee0c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion custom_components/myskoda/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ async def _async_update_data(self) -> State:
_LOGGER.debug("Performing initial data fetch for vin %s", self.vin)
try:
user = await self.myskoda.get_user()
vehicle = await self._async_get_minimal_data()
# - Disabled until we find a way to schedule an update when HA is started
# vehicle = await self._async_get_minimal_data()
vehicle = await self._async_get_vehicle_data()
except ClientResponseError as err:
handle_aiohttp_error(
"setup user and vehicle", err, self.hass, self.entry
Expand Down

0 comments on commit 0e9ee0c

Please sign in to comment.