From 65649468f3d386710a44ee4045dc8fc3b49de40d Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 25 May 2021 09:33:20 -0100 Subject: [PATCH] force 'name' key in array Signed-off-by: Maxence Lange --- lib/private/App/AppManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/App/AppManager.php b/lib/private/App/AppManager.php index a00a93aa84..aae9face16 100644 --- a/lib/private/App/AppManager.php +++ b/lib/private/App/AppManager.php @@ -536,7 +536,7 @@ class AppManager implements IAppManager { foreach ($apps as $appId) { $info = $this->getAppInfo($appId); if ($info === null) { - $incompatibleApps[] = ['id' => $appId]; + $incompatibleApps[] = ['id' => $appId, 'name' => $appId]; } elseif (!\OC_App::isAppCompatible($version, $info)) { $incompatibleApps[] = $info; }