Ignore virtual virtual wine cellar #3

This commit is contained in:
Andre Basche 2023-03-13 23:07:36 +01:00
parent 2941b57d09
commit 7c99ffeaf7

View File

@ -55,11 +55,13 @@ class HonConnection:
appliances = (await resp.json())["payload"]["appliances"]
for appliance in appliances:
device = HonDevice(self, appliance)
if device.mac_address is None:
continue
await asyncio.gather(*[
device.load_attributes(),
device.load_commands(),
device.load_statistics()])
self._devices.append(device)
self._devices.append(device)
except json.JSONDecodeError:
_LOGGER.error("No JSON Data after GET: %s", await resp.text())
return False