Lookup the App name instead of OCA

This commit is contained in:
Joas Schilling 2016-01-04 14:47:49 +01:00
parent ebc52300e7
commit 2cf4e144cc
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class ServerContainer extends SimpleContainer {
// the apps container first.
if (strpos($name, 'OCA\\') === 0 && substr_count($name, '\\') >= 2) {
$segments = explode('\\', $name);
$appContainer = $this->getAppContainer(strtolower($segments[0]));
$appContainer = $this->getAppContainer(strtolower($segments[1]));
try {
return $appContainer->query($name);
} catch (QueryException $e) {