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