-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Home Assistant 2024.9 compatibility (async_update_entry) #37
Comments
same here: |
Just installed this on a brand new 2024.11 and this is what I'm getting:
As such the integration is failing to load or do any configuration :( |
Home Assistant 2024.9 requires the use of async_update_entry instead of directly modifying the config_entry object. This change updates the code to use the new method. Fixes: thomasloven#37 Signed-off-by: Andrew Grimberg <[email protected]>
I've just installed this on 2024.7.4 and it works, but there's a warning:
Logger: homeassistant.helpers.frame
Source: helpers/frame.py:184
Detected that custom integration 'favicon' sets "options" directly to update a config entry. This is deprecated and will stop working in Home Assistant 2024.9, it should be updated to use async_update_entry instead at
custom_components/favicon/__init__.py, line 44: config_entry.options = config_entry.data
, please report it to the author of the 'favicon' custom integrationhttps://developers.home-assistant.io/blog/2024/02/12/async_update_entry/
Just a heads-up.
The text was updated successfully, but these errors were encountered: