diff --git a/pandora_console/godmode/um_client/lib/UpdateManager/Client.php b/pandora_console/godmode/um_client/lib/UpdateManager/Client.php index 228bdae53a..0b09845cd6 100644 --- a/pandora_console/godmode/um_client/lib/UpdateManager/Client.php +++ b/pandora_console/godmode/um_client/lib/UpdateManager/Client.php @@ -2239,6 +2239,11 @@ class Client return []; } + if (is_array($progress) === false) { + // Old data. + return []; + } + return $progress; }