From b48fb3ea61cb9948bf3ced7ce64c0858d17b06fe Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Tue, 19 May 2026 17:57:57 +0200 Subject: [PATCH] Dnsmasq: modify regex --- modules/Dnsmasq.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Dnsmasq.php b/modules/Dnsmasq.php index d62ec21..36cf795 100644 --- a/modules/Dnsmasq.php +++ b/modules/Dnsmasq.php @@ -6,7 +6,7 @@ class Dnsmasq extends PatchBase { } function check() : bool { if ($this->fetch('http://www.thekelleys.org.uk/dnsmasq/')) - return $this->parse('/"LATEST_IS_([\d\.]+)"/'); + return $this->parse('/"LATEST_IS_([\d\.]+(rel\d+)?)"/'); return false; } }