From 691b781c523425b55ed52f9e02c4ad650d977c47 Mon Sep 17 00:00:00 2001 From: Mikayla Fischler Date: Tue, 19 Aug 2025 18:42:48 -0400 Subject: [PATCH] #401 slowed polling rate for computer app --- pocket/ui/apps/comps.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pocket/ui/apps/comps.lua b/pocket/ui/apps/comps.lua index 914005b..63e885a 100644 --- a/pocket/ui/apps/comps.lua +++ b/pocket/ui/apps/comps.lua @@ -76,9 +76,9 @@ local function new_view(root) end local last_update = 0 - -- refresh data callback, every 500ms it will re-send the query + -- refresh data callback, every 1s it will re-send the query local function update() - if util.time_ms() - last_update >= 500 then + if util.time_ms() - last_update >= 1000 then db.diag.get_comps() last_update = util.time_ms() end