diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-03-06 15:58:19 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-04-22 12:19:01 +0200 |
commit | 733a81813946d3d00bb403f6f4afaa1f177003a6 (patch) | |
tree | 65307f344a2beee120d625dab7817452e95dd4e9 /apps/settings | |
parent | 0e7bac72ae9e6096fe79c460bc2ef963619aa226 (diff) | |
download | nextcloud-server-733a81813946d3d00bb403f6f4afaa1f177003a6.tar.gz nextcloud-server-733a81813946d3d00bb403f6f4afaa1f177003a6.zip |
fix: Migrate a few more classes away from OC_App::getAppPath
Also fixed AppTest
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/lib/Controller/AppSettingsController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/AppSettingsController.php b/apps/settings/lib/Controller/AppSettingsController.php index 9dfe4772b93..2d6697c7d29 100644 --- a/apps/settings/lib/Controller/AppSettingsController.php +++ b/apps/settings/lib/Controller/AppSettingsController.php @@ -402,7 +402,7 @@ class AppSettingsController extends Controller { try { $this->appManager->getAppPath($app['id']); $existsLocally = true; - } catch (AppPathNotFoundException $e) { + } catch (AppPathNotFoundException) { $existsLocally = false; } |