fix error when not logged in

This commit is contained in:
Robin Appelman 2016-08-18 16:06:25 +02:00 committed by Marius Blüm
parent bead6c9307
commit e286e0492a
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,10 @@ class Application extends App implements IBackendProvider, IAuthMechanismProvide
*/
public function registerSettings() {
$container = $this->getContainer();
$userSession = $container->getServer()->getUserSession();
if (!$userSession->isLoggedIn()) {
return;
}
$backendService = $container->query('OCA\\Files_External\\Service\\BackendService');
/** @var \OCA\Files_External\Service\UserGlobalStoragesService $userGlobalStoragesService */