diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-03-22 09:55:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 09:55:19 +0100 |
commit | f843b7edfe7b3bc6e45d4610778d2df98b3985e3 (patch) | |
tree | 396188e1db0681fe4a3b3d55d3585b5915905bab /lib/private/App | |
parent | be35b54f69f7c54318adc3bb46d23506afcebd09 (diff) | |
parent | 514de5dfa18d92d2f7bb15c9840d685b25300f4c (diff) | |
download | nextcloud-server-f843b7edfe7b3bc6e45d4610778d2df98b3985e3.tar.gz nextcloud-server-f843b7edfe7b3bc6e45d4610778d2df98b3985e3.zip |
Merge pull request #8506 from nextcloud/use-appmanager
Use isInstalled of AppManger instead of reimplement it
Diffstat (limited to 'lib/private/App')
-rw-r--r-- | lib/private/App/AppManager.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/App/AppManager.php b/lib/private/App/AppManager.php index 81f1369cb5e..442fc1a0e1b 100644 --- a/lib/private/App/AppManager.php +++ b/lib/private/App/AppManager.php @@ -204,7 +204,9 @@ class AppManager implements IAppManager { } /** - * Check if an app is installed in the instance + * Check if an app is enabled in the instance + * + * Notice: This actually checks if the app is enabled and not only if it is installed. * * @param string $appId * @return bool |