Merge pull request #19337 from owncloud/fix-shipped-check-for-apps
Correctly check whether an app is shipped
This commit is contained in:
commit
5ee46c8500
|
@ -837,7 +837,7 @@ class OC_App {
|
|||
|
||||
$info['active'] = $active;
|
||||
|
||||
if (isset($info['shipped']) and ($info['shipped'] == 'true')) {
|
||||
if (self::isShipped($app)) {
|
||||
$info['internal'] = true;
|
||||
$info['level'] = self::officialApp;
|
||||
$info['removable'] = false;
|
||||
|
|
Loading…
Reference in New Issue