Tesla vehicles return the name of the location they are navigating to, and this is passed to the device tracker entity. However this causes an issue with the "Home" location. The vehicle tells Home Assistant is navigating Home but the entity expects the special value of home. So certain automation conditions checking if the state == home failed because its actually Home, despite the location being the same.
This PR forces location names of Home to home so they they can be translated and work on the device tracker device condition.
Type of change
[ ] Dependency upgrade
[x] Bugfix (non-breaking change which fixes an issue)
[ ] New integration (thank you!)
[ ] New feature (which adds functionality to an existing integration)
[ ] Deprecation (breaking change to happen in the future)
[ ] Breaking change (fix/feature causing existing functionality to break)
[ ] Code quality improvements to existing code or addition of tests
Additional information
This PR fixes or closes issue: fixes #129533
This PR is related to issue:
Link to documentation pull request:
Checklist
[x] The code change is tested and works locally.
[x] Local tests pass. Your PR cannot be merged unless tests pass
Proposed change
Tesla vehicles return the name of the location they are navigating to, and this is passed to the device tracker entity. However this causes an issue with the "Home" location. The vehicle tells Home Assistant is navigating
Home
but the entity expects the special value ofhome
. So certain automation conditions checking if the state ==home
failed because its actuallyHome
, despite the location being the same.This PR forces location names of
Home
tohome
so they they can be translated and work on the device tracker device condition.Type of change
Additional information
Checklist
ruff format homeassistant tests
)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest
.requirements_all.txt
.Updated by running
python3 -m script.gen_requirements_all
.To help with the load of incoming pull requests: