From e6930e3a1a2a4d5e5cd78e9c6deaef68d8a1f60c Mon Sep 17 00:00:00 2001 From: sepehr Date: Fri, 9 Aug 2024 15:54:04 +0330 Subject: [PATCH] Fix scan bug not finding vm/pc installations 2 --- py/libs/util.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/py/libs/util.py b/py/libs/util.py index 3532f6c..be9808f 100644 --- a/py/libs/util.py +++ b/py/libs/util.py @@ -299,6 +299,8 @@ def grab_device_data(dev, q): if d['name'] in excluded_keys: continue health_vals[d['name']]=d['value'] + elif result['board-name']=='x86': + health_vals={} else: health_vals: Dict[str, str] = health[0] result.update(health_vals)