From 2d1aada2a0d0e735d957ba30c2535602db8474e8 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Mon, 13 Dec 2021 15:56:56 +0100 Subject: [PATCH] VeraCrypt: fix regex --- modules/VeraCrypt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/VeraCrypt.php b/modules/VeraCrypt.php index d180bd0..b4265f8 100644 --- a/modules/VeraCrypt.php +++ b/modules/VeraCrypt.php @@ -6,7 +6,7 @@ class VeraCrypt extends PatchBase { } function check() : bool { if ($this->fetch('https://www.veracrypt.fr/en/Downloads.html')) - return $this->parse('_//launchpad\.net/veracrypt/trunk/[\d\.]+[a-z]?[-a-z\d]*/+download/VeraCrypt%20Setup%20([\d\.]+[a-z]?[-A-Za-z\d]*)\.exe_'); + return $this->parse('_//launchpad\.net/veracrypt/trunk/[\d\.]+[a-z]?[-a-z\d]*/\+download/VeraCrypt%20Setup%20([\d\.]+[a-z]?[-A-Za-z\d]*)\.exe_'); return false; } }