From f505201149c34e9f10f091f0c3cdfd11b3af4020 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Tue, 17 Oct 2023 17:02:40 +0200 Subject: [PATCH] Audacity: fix broken regex --- modules/Audacity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Audacity.php b/modules/Audacity.php index 4567f7e..e0868b7 100644 --- a/modules/Audacity.php +++ b/modules/Audacity.php @@ -6,7 +6,7 @@ class Audacity extends PatchBase { } function check() : bool { if ($this->fetch('https://www.audacityteam.org/download/windows/')) - return $this->parse('/

Current Version: ([\d\.]+)<\/h2>/'); + return $this->parse('/

Current version ([\d\.]+)<\/p>/'); return false; } }