Merge branch 'ent-12718-el-update-manager-online-no-da-error-cuando-la-firma-del-server-esta-mal' into 'develop'

Ent 12718 el update manager online no da error cuando la firma del server esta mal

See merge request artica/pandorafms!6890
This commit is contained in:
Matias Didier 2024-02-01 08:22:43 +00:00
commit 993f1e4124
1 changed files with 6 additions and 1 deletions

View File

@ -2383,7 +2383,7 @@ class Client
// Retrieve package from UMS.
$this->notify(0, 'Downloading server update '.$version);
$this->post(
$package = $this->post(
[
'action' => 'get_server_package',
'arguments' => ['version' => $version],
@ -2407,6 +2407,11 @@ class Client
return false;
}
if (empty($package) === true) {
$this->lastError = 'Error on Package from UMS';
return false;
}
if ($this->propagateUpdates === true) {
$this->saveSignature(
$signature,