Merge pull request #21443 from owncloud/fix-container-lookup

Lookup the App name instead of OCA
This commit is contained in:
Thomas Müller 2016-01-06 17:22:41 +01:00
commit b6bc17d014
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) {