fix smart legacy as a list

This commit is contained in:
Cayo Puigdefabregas 2024-12-13 09:50:01 +01:00
parent 30e1539753
commit 21ca8755d2

View file

@ -65,7 +65,7 @@ def convert_to_legacy_snapshot(snapshot):
snapshot["schema_api"] = "1.0.0"
snapshot["settings_version"] = "No Settings Version (NaN)"
snapshot["timestamp"] = snapshot["timestamp"].replace(" ", "T")
snapshot["data"]["smart"] = snapshot["data"]["smartctl"]
snapshot["data"]["smart"] = json.loads(snapshot["data"]["smartctl"])
snapshot["data"].pop("smartctl")
snapshot["data"].pop("inxi")
snapshot.pop("operator_id")