From 5b0be831e2c3ff5559e8e6e8ffcdf8e9083852ce Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Sun, 28 Jun 2026 20:07:55 +0200 Subject: [PATCH] Fix hold countdown not updating for clients connecting mid-hold MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit HoldRemaining now calls updateHeaderCountdown() directly so the header hold row refreshes every second from its own message, not only via the Elapsed → updateStepPlates → updateHeaderCountdown chain. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01SH2D4LRuCnhLSzoYerAfJX --- web/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app.js b/web/app.js index 00de3ef..96da869 100644 --- a/web/app.js +++ b/web/app.js @@ -733,6 +733,7 @@ function onSudChanged(msg) { } else if (key === 'HoldRemaining') { sudHoldRemaining = msg.HoldRemaining; updateStatusLine(); + updateHeaderCountdown(); } else if (key === 'Elapsed') { elapsed = msg.Elapsed; updateStepPlates();