diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-22 16:00:26 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-03-21 11:34:18 +0100 |
commit | 514de5dfa18d92d2f7bb15c9840d685b25300f4c (patch) | |
tree | 8a1538364a515507f60077a827de5fce07a1ae38 /lib/private/App/AppManager.php | |
parent | 2d5febd0b9fe7f5b9e6a463fa877fef1148921c8 (diff) | |
download | nextcloud-server-514de5dfa18d92d2f7bb15c9840d685b25300f4c.tar.gz nextcloud-server-514de5dfa18d92d2f7bb15c9840d685b25300f4c.zip |
Use isInstalled of AppManger instead of reimplement it
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/App/AppManager.php')
-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 |