diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-02 16:15:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-02 16:15:02 +0200 |
commit | d7d2d7c803b372278cd60a7af76e6a410dce046d (patch) | |
tree | 28778a96b2a9052246a277b0ceb9ba30fa3cb710 /core | |
parent | a96c6519358a8f6b1d52d0e27bd099b704b22383 (diff) | |
parent | cd02b2205e5148e79698f60d0209cf10391e30c8 (diff) | |
download | nextcloud-server-d7d2d7c803b372278cd60a7af76e6a410dce046d.tar.gz nextcloud-server-d7d2d7c803b372278cd60a7af76e6a410dce046d.zip |
Merge pull request #5952 from nextcloud/appmanager-isshipped
Use public methods for OC_App::isShipped
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/App/ListApps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/App/ListApps.php b/core/Command/App/ListApps.php index e03e3ce8f56..c933a2519ef 100644 --- a/core/Command/App/ListApps.php +++ b/core/Command/App/ListApps.php @@ -73,7 +73,7 @@ class ListApps extends Base { //sort enabled apps above disabled apps foreach ($apps as $app) { - if ($shippedFilter !== null && \OC_App::isShipped($app) !== $shippedFilter){ + if ($shippedFilter !== null && $this->manager->isShipped($app) !== $shippedFilter){ continue; } if ($this->manager->isInstalled($app)) { |