mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 14:17:45 +00:00
Fix missing password for slide_local (#133142)
This commit is contained in:
parent
8080ad14bf
commit
d6c81830a4
@ -47,7 +47,7 @@ class SlideCoordinator(DataUpdateCoordinator[dict[str, Any]]):
|
||||
self.api_version = entry.data[CONF_API_VERSION]
|
||||
self.mac = entry.data[CONF_MAC]
|
||||
self.host = entry.data[CONF_HOST]
|
||||
self.password = entry.data[CONF_PASSWORD]
|
||||
self.password = entry.data[CONF_PASSWORD] if self.api_version == 1 else ""
|
||||
|
||||
async def _async_setup(self) -> None:
|
||||
"""Do initialization logic for Slide coordinator."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user