diff --git a/modules/UltraVNC.php b/modules/UltraVNC.php index 01b1155..f5ca8f6 100644 --- a/modules/UltraVNC.php +++ b/modules/UltraVNC.php @@ -2,11 +2,11 @@ class UltraVNC extends PatchBase { function __construct() { - parent::__construct('UltraVNC Team', 'UltraVNC', 'https://www.uvnc.com/downloads/ultravnc.html'); + parent::__construct('UltraVNC Team', 'UltraVNC', 'https://uvnc.com/downloads/ultravnc.html'); } function check() : bool { - if ($this->fetch('https://www.uvnc.com/downloads/ultravnc.html')) - return $this->parse('/[Ll]atest.[Rr]elease.[Vv]ersion.+[Rr]elease.([\d\.]+)/u'); + if ($this->fetch('https://uvnc.com/downloads/ultravnc.html')) + return $this->parse('/Latest release version: ([\d\.]+)/u'); return false; } }