Fix in FHEM custom component
This commit is contained in:
parent
73a2cb1625
commit
9cf319eb2d
|
@ -50,7 +50,7 @@ class FhemConnection(ReconnectingClient):
|
||||||
for device_list in self._devices.values():
|
for device_list in self._devices.values():
|
||||||
for device in device_list:
|
for device in device_list:
|
||||||
device.refresh()
|
device.refresh()
|
||||||
await device.async_update_ha_state()
|
# await device.async_update_ha_state()
|
||||||
|
|
||||||
async def _process_line(self, line):
|
async def _process_line(self, line):
|
||||||
if line.startswith(self._cul_device_name + " "): # Status update message
|
if line.startswith(self._cul_device_name + " "): # Status update message
|
||||||
|
|
Loading…
Reference in New Issue