Citrix Workspace app LTSR: fixed regex

This commit is contained in:
Steffen Lange 2022-08-20 12:51:38 +02:00
parent 3a95931fc3
commit 40c8393404

View file

@ -7,7 +7,7 @@ class CitrixWorkspaceAppLTSR extends PatchBase {
}
function check() : bool {
if ($this->fetch('https://www.citrix.com/downloads/workspace-app/workspace-app-for-windows-long-term-service-release/'))
return $this->parse('/>Citrix Workspace app ([\d\.]+).+LTSR/');
return $this->parse('/>Citrix Workspace app for Windows LTSR ([\d\.]+)</');
return false;
}
}