Directory Studio: fix regex

This commit is contained in:
Steffen Lange 2025-02-26 16:58:08 +01:00
parent aeb0e4289d
commit 1f6814cdf3

View file

@ -6,7 +6,7 @@ class ApacheDirectoryStudio extends PatchBase {
} }
function check() : bool { function check() : bool {
if ($this->fetch('https://directory.apache.org/studio/')) if ($this->fetch('https://directory.apache.org/studio/'))
return $this->parse('/<b>Download Apache<br>Directory Studio ([\d\.]+[-M\d]*)<\/b>/'); return $this->parse('/>Version ([\d\.]+[-M\d]*)</');
return false; return false;
} }
} }