diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-11-11 12:35:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-11 12:35:55 +0100 |
commit | 323c76cd48db37fc047162367dd504c82befff6e (patch) | |
tree | 15c0d2b16147736d25b65cc987c2a5aae0c84b88 /lib | |
parent | 46344870858e320787846617be55a143565b8118 (diff) | |
parent | 3c092993460fc9ad71970f4b5933f81a3666e56e (diff) | |
download | nextcloud-server-323c76cd48db37fc047162367dd504c82befff6e.tar.gz nextcloud-server-323c76cd48db37fc047162367dd504c82befff6e.zip |
Merge pull request #17859 from nextcloud/bugfix/app-init
Fix app class setup warnings
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/AppFramework/App.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/AppFramework/App.php b/lib/public/AppFramework/App.php index fd91d8d058d..f327e6ca022 100644 --- a/lib/public/AppFramework/App.php +++ b/lib/public/AppFramework/App.php @@ -95,7 +95,7 @@ class App { } } - if (!$setUpViaQuery) { + if (!$setUpViaQuery && $applicationClassName !== \OCP\AppFramework\App::class) { \OC::$server->getLogger()->logException($e, [ 'app' => $appName, ]); |