From bd54777862630ac9322a408eaf4aca599ffe7ff0 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Tue, 17 Oct 2023 17:02:52 +0200 Subject: [PATCH] OpenWrt: fix broken regex --- modules/OpenWrt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/OpenWrt.php b/modules/OpenWrt.php index 360b2a3..575e056 100644 --- a/modules/OpenWrt.php +++ b/modules/OpenWrt.php @@ -6,7 +6,7 @@ class OpenWrt extends PatchBase { } function check() : bool { if ($this->fetch('https://openwrt.org/start')) - return $this->parse('/Current Stable Release - OpenWrt ([\d\.]+)<\/strong>/'); + return $this->parse('/Current stable release - OpenWrt ([\d\.]+)<\/strong>/'); return false; } }