From 127a80813ebe17b263dd540bab340ea5fc7b81f0 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Thu, 19 Feb 2026 23:34:54 -0500 Subject: [PATCH] fix: Ensure time since last seen defaults to 0 in dashboard display --- webbridge.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webbridge.lua b/webbridge.lua index 50ad2ed..b443408 100644 --- a/webbridge.lua +++ b/webbridge.lua @@ -155,7 +155,7 @@ local function drawDashboard() -- Last seen monitor.setTextColor(colors.darkGray) - monitor.write(string.format(" %ds", timeSince)) + monitor.write(string.format(" %ds", timeSince or 0)) y = y + 1 count = count + 1