Merge branch 'ent-7703-error-en-update-manager-online-en-open' into 'develop'

Avoid using old data when parsing progress

See merge request artica/pandorafms!4206
This commit is contained in:
Daniel Rodriguez 2021-06-15 12:55:26 +00:00
commit b64f15e4d7
1 changed files with 5 additions and 0 deletions

View File

@ -2239,6 +2239,11 @@ class Client
return [];
}
if (is_array($progress) === false) {
// Old data.
return [];
}
return $progress;
}