mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #27098 from nextcloud/fix/noid/missing-key-in-addInfo
force 'name' key in array
This commit is contained in:
commit
c04e0d1db9
1 changed files with 1 additions and 1 deletions
|
|
@ -535,7 +535,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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue