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:
commit
993f1e4124
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue