From 78094192020bc2455eec7bfbe89c3e86e137ae32 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Tue, 15 Sep 2026 09:43:56 +0000 Subject: [PATCH] fix(web): anchor patch agent version regex to mirror server parseVersion --- web/components/patching/status.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/components/patching/status.ts b/web/components/patching/status.ts index 1dd0b7d..3a7937c 100644 --- a/web/components/patching/status.ts +++ b/web/components/patching/status.ts @@ -35,15 +35,17 @@ export const SERVER_STATUS: Record want[i]; } - return !m[4]; + const hasPrerelease = !!m[4]; + return !hasPrerelease; } const DAYS = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];