-
Notifications
You must be signed in to change notification settings - Fork 304
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
fix: fix hass_url undefined #2417
Conversation
Removed self.config.pop("hass_url")
I'm not sure yet why this pop was there to begin with and can't comment on whether removing it could break other things. I think the root issue is at line 815. Solution is very simple, as given by @LorenzoRogai, and should be included anyway even if the .pop is unnecessary as it is a critical error (hass_url doesn't exist in the given context): Change |
I've compared v4.12.5 with v4.10.3 and in 4.10.3,
I think I added it with the intention it be a reconfigurable option but after a little discussion with Alan, decided to not make it reconfigurable and that section of code lingered. I've tested my |
Revert previous commit and apply new fix
fix: fix hass_url undefined (#2417)
Sadly not working for .com.au |
Removed self.config.pop("hass_url")
Fixes #2408