From 156ef976679b5dd2c8b0b37ce224f5c5149c3e8a Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 13 May 2026 13:19:44 -0400 Subject: [PATCH] Fix auto-refresh ignoring 'Off' setting on page load Using || 30 / || 60 as a fallback treats refreshInterval=0 (Off) as falsy and replaces it with the default, causing auto-refresh to start even when the user saved 'Off'. Replace with nullish coalescing (??) so only null/undefined triggers the default. Co-Authored-By: Claude Sonnet 4.6 --- templates/index.html | 2 +- templates/links.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 417acec..31ec3aa 100644 --- a/templates/index.html +++ b/templates/index.html @@ -469,7 +469,7 @@ {% block scripts %}