From da7b9f664036aedbc8471839b68f80be4d163d9d Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Tue, 17 Oct 2023 17:03:08 +0200 Subject: [PATCH] StrawberryPerl: fix broken regex --- modules/StrawberryPerl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/StrawberryPerl.php b/modules/StrawberryPerl.php index 21cdcc9..f93ab32 100644 --- a/modules/StrawberryPerl.php +++ b/modules/StrawberryPerl.php @@ -6,7 +6,7 @@ class StrawberryPerl extends PatchBase { } function check() : bool { if ($this->fetch('https://strawberryperl.com/')) - return $this->parse('_/download/[\d\.]+/strawberry-perl-([\d\.]+)-\d+bit\.msi_'); + return $this->parse('_/strawberry-perl-([\d\.]+)-\d+bit\.msi_'); return false; } }