Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed app groups setting preservation
  • Loading branch information
Mirek Bauer committed Nov 30, 2016
commit dbbbb31e526d878710b122a4fa6a2ee511a6a569
2 changes: 2 additions & 0 deletions settings/Controller/AppSettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ public function listApps($category = '', $includeUpdateInfo = true) {
$groups = [];
if (is_string($app['groups'])) {
$groups = json_decode($app['groups']);
} elseif (is_array($app['groups'])) {
$groups = $app['groups'];
}
$app['groups'] = $groups;
$app['canUnInstall'] = !$app['active'] && $app['removable'];
Expand Down