ownCloud Server: update regex

This commit is contained in:
Steffen Lange 2023-11-18 23:23:54 +01:00
parent a9807e5d51
commit 6a7267aaa1

View file

@ -6,7 +6,7 @@ class OwnCloudServer extends PatchBase {
} }
function check() : bool { function check() : bool {
if ($this->fetch('https://owncloud.com/changelog/server/')) if ($this->fetch('https://owncloud.com/changelog/server/'))
return $this->parse('/Changelog for ownCloud Core \[([\d\.]+)\]/'); return $this->parse('/Changelog for ([\d\.]+)/');
return false; return false;
} }
} }