Skip to content

Commit

Permalink
Fix Lincoln vehicle issue
Browse files Browse the repository at this point in the history
  • Loading branch information
itchannel committed Jan 2, 2024
1 parent f49c780 commit b7a7f81
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions custom_components/fordpass/fordpass_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,9 @@ def get_status(self):
"""Get status from Autonomics endpoint"""
params = {"lrdt": "01-01-1970 00:00:00"}

if self.auto_token is None:
self.__acquire_token()

headers = {
**apiHeaders,
"auth-token": self.token,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/fordpass/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"loggers": ["custom_components.fordpass"],
"requirements": [],
"ssdp": [],
"version": "0.1.64",
"version": "0.1.65",
"zeroconf": []
}
2 changes: 2 additions & 0 deletions info.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## **Changelog**
### Version 1.65
- Add ability to use Lincoln vehicles again
### Version 1.64
- Add helper text for initial login when using a mobile number
- Added sensors containing all returned data from API (Disabled by default in HA) can be used for templates and other automations/research
Expand Down

0 comments on commit b7a7f81

Please sign in to comment.