mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
Merge pull request #2221 from nextcloud/from-is-featured-to-featured
Error log spam: Cast "isFeatured" to "featured"
This commit is contained in:
commit
1e06d0bb47
1 changed files with 3 additions and 0 deletions
|
|
@ -154,6 +154,9 @@ class AppSettingsController extends Controller {
|
|||
$formattedApps = [];
|
||||
$apps = $this->appFetcher->get();
|
||||
foreach($apps as $app) {
|
||||
if (isset($app['isFeatured'])) {
|
||||
$app['featured'] = $app['isFeatured'];
|
||||
}
|
||||
|
||||
// Skip all apps not in the requested category
|
||||
$isInCategory = false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue