1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00

Fix google calendar disabled entity handling (#76699)

Fix google calendar disable entity handling
This commit is contained in:
Allen Porter 2022-08-13 06:02:32 -07:00 committed by GitHub
parent bcc0a92e2b
commit b969ed00b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,6 @@ async def async_setup_entry(
calendar_id,
data.get(CONF_SEARCH),
)
await coordinator.async_config_entry_first_refresh()
entities.append(
GoogleCalendarEntity(
coordinator,
@ -342,6 +341,9 @@ class GoogleCalendarEntity(CoordinatorEntity, CalendarEntity):
async def async_added_to_hass(self) -> None:
"""When entity is added to hass."""
await super().async_added_to_hass()
# We do not ask for an update with async_add_entities()
# because it will update disabled entities
await self.coordinator.async_request_refresh()
self._apply_coordinator_update()
async def async_get_events(