diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-07-19 08:15:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-19 08:15:13 +0200 |
commit | 796d6b0dc76f7c26ee6d8075fec96228175e94d3 (patch) | |
tree | a4d81103a659021c0873cabacce8c2a31b96f1d5 | |
parent | 9e3c8b6708419ef4ceccb0d7c561a8866be1cdfd (diff) | |
parent | 0f2e75a6ce4c9b737c35d20a7ae7237258a60d13 (diff) | |
download | nextcloud-server-796d6b0dc76f7c26ee6d8075fec96228175e94d3.tar.gz nextcloud-server-796d6b0dc76f7c26ee6d8075fec96228175e94d3.zip |
Merge pull request #33270 from nextcloud/fix/noid/location-legacy-appfile
fix loading legacy app.php with multi app dir
-rw-r--r-- | lib/private/legacy/OC_App.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php index f290b7a610c..9fa13a56d38 100644 --- a/lib/private/legacy/OC_App.php +++ b/lib/private/legacy/OC_App.php @@ -183,7 +183,7 @@ class OC_App { 'app' => $app, ]); try { - self::requireAppFile($app); + self::requireAppFile($appPath); } catch (Throwable $ex) { if ($ex instanceof ServerNotAvailableException) { throw $ex; |