perf: remove unused device info (#1574)
Some checks failed
Tests / check-rule-format (push) Failing after -8m20s
Validate / validate-hassfest (push) Failing after -8m21s
Validate / validate-hacs (push) Failing after -8m14s
Validate / validate-lint (push) Failing after -8m22s
Validate / validate-setup (push) Failing after -8m20s

This commit is contained in:
Li Shuzhen
2025-12-26 08:42:23 +08:00
committed by GitHub
parent 75390a3d83
commit f4d591b4d3
3 changed files with 19 additions and 21 deletions

View File

@@ -601,15 +601,8 @@ class MIoTHttpClient:
'bssid': device.get('bssid', None),
'order_time': device.get('orderTime', 0),
'fw_version': device.get('extra', {}).get(
'fw_version', 'unknown'),
}
if isinstance(device.get('extra', None), dict) and device['extra']:
device_infos[did]['fw_version'] = device['extra'].get(
'fw_version', None)
device_infos[did]['mcu_version'] = device['extra'].get(
'mcu_version', None)
device_infos[did]['platform'] = device['extra'].get(
'platform', None)
}
next_start_did = res_obj.get('next_start_did', None)
if res_obj.get('has_more', False) and next_start_did: