diff --git a/custom_components/daily_schedule/__init__.py b/custom_components/daily_schedule/__init__.py index 9ed1745..a532f29 100644 --- a/custom_components/daily_schedule/__init__.py +++ b/custom_components/daily_schedule/__init__.py @@ -17,7 +17,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: async def config_entry_update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None: """Update listener, called when the config entry options are changed.""" - await hass.config_entries.async_reload(entry.entry_id) + hass.config_entries.async_schedule_reload(entry.entry_id) async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: