From eb8c3975770cff88f968dbb4ff8673f75370ee58 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Sat, 5 Jul 2025 15:38:31 +0200 Subject: [PATCH] UVNC: update regex --- modules/UltraVNC.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/UltraVNC.php b/modules/UltraVNC.php index f5ca8f6..9cba549 100644 --- a/modules/UltraVNC.php +++ b/modules/UltraVNC.php @@ -6,7 +6,7 @@ class UltraVNC extends PatchBase { } function check() : bool { if ($this->fetch('https://uvnc.com/downloads/ultravnc.html')) - return $this->parse('/Latest release version: ([\d\.]+)/u'); + return $this->parse('/Latest release version: UltraVNC ([\d\.]+)/u'); return false; } }