diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2020-01-24 19:06:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 19:06:29 +0100 |
commit | 4e36157f3dc4fe085e629f07d0cae8c24879b5df (patch) | |
tree | b3e6ca607bbdacc0e4a10d074f362d24643a0202 /apps/settings/lib/Controller/AppSettingsController.php | |
parent | 0a2409451cd7a76af8df1b4f6a3f5ce9f834f40c (diff) | |
parent | dab1f5282a35a2f5ff08bffa14d66881bda6db7a (diff) | |
download | nextcloud-server-4e36157f3dc4fe085e629f07d0cae8c24879b5df.tar.gz nextcloud-server-4e36157f3dc4fe085e629f07d0cae8c24879b5df.zip |
Merge pull request #19116 from nextcloud/fix/19104/fix-bundle-view
apps can have polyamorous relationships with bundles
Diffstat (limited to 'apps/settings/lib/Controller/AppSettingsController.php')
-rw-r--r-- | apps/settings/lib/Controller/AppSettingsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/AppSettingsController.php b/apps/settings/lib/Controller/AppSettingsController.php index 80ba23594a3..a49b57185c3 100644 --- a/apps/settings/lib/Controller/AppSettingsController.php +++ b/apps/settings/lib/Controller/AppSettingsController.php @@ -219,7 +219,7 @@ class AppSettingsController extends Controller { foreach($bundle->getAppIdentifiers() as $identifier) { foreach($this->allApps as &$app) { if($app['id'] === $identifier) { - $app['bundleId'] = $bundle->getIdentifier(); + $app['bundleIds'][] = $bundle->getIdentifier(); continue; } } |