Revert "[TIZI/TICI] ui: drive stat cache is a json already"

This reverts commit 51d3f0dea2.
This commit is contained in:
Jason Wen
2026-02-09 02:54:58 -05:00
parent 51d3f0dea2
commit 043eab5620
@@ -54,7 +54,7 @@ class TripsLayout(Widget):
if not stats:
return {}
try:
return stats
return json.loads(stats)
except Exception:
cloudlog.exception(f"Failed to decode drive stats: {stats}")
return {}