aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/ServerContainer.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-03-22 10:33:30 +0100
committerJoas Schilling <coding@schilljs.com>2017-03-22 10:44:13 +0100
commit5695a4ec9287775912b9df1b0038964543e257d1 (patch)
tree5d3e24a9fb1055b734cf30ee06600ac702137609 /lib/private/ServerContainer.php
parent9208f6379cf74731e2cd2acb77cac0403bacd00e (diff)
downloadnextcloud-server-5695a4ec9287775912b9df1b0038964543e257d1.tar.gz
nextcloud-server-5695a4ec9287775912b9df1b0038964543e257d1.zip
Don't do a recursive search
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/ServerContainer.php')
-rw-r--r--lib/private/ServerContainer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/ServerContainer.php b/lib/private/ServerContainer.php
index df0293addf7..fe868867b5a 100644
--- a/lib/private/ServerContainer.php
+++ b/lib/private/ServerContainer.php
@@ -79,7 +79,7 @@ class ServerContainer extends SimpleContainer {
$segments = explode('\\', $name);
$appContainer = $this->getAppContainer(strtolower($segments[1]));
try {
- return $appContainer->query($name);
+ return $appContainer->queryNoFallback($name);
} catch (QueryException $e) {
// Didn't find the service in the respective app container,
// ignore it and fall back to the core container.