Ignore virtual virtual wine cellar #3
This commit is contained in:
parent
2941b57d09
commit
7c99ffeaf7
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue