From eb85cfc9257fb9b4ac443493791622fd16ecf6c8 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 29 Jun 2026 10:32:21 -0600 Subject: [PATCH] Change ping warn levels on status page --- public/status/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/status/index.html b/public/status/index.html index 7d30acf..0aab53b 100644 --- a/public/status/index.html +++ b/public/status/index.html @@ -179,8 +179,8 @@ function pingClass(ms) { if (ms === null || ms === undefined) return ''; - if (ms < 80) return 'ping-good'; - if (ms < 200) return 'ping-warn'; + if (ms < 100) return 'ping-good'; + if (ms < 500) return 'ping-warn'; return 'ping-bad'; }