Merge pull request #25044 from owncloud/stable9-scanner-user-not-setup

[stable9] skip scanning for a user when the user is not setup yet
This commit is contained in:
Vincent Petry 2016-06-09 14:52:44 +02:00
commit 05870bb659
1 changed files with 6 additions and 1 deletions

View File

@ -148,7 +148,12 @@ class Scanner extends PublicEmitter {
if ($storage->instanceOfStorage('\OC\Files\Storage\Home') and
(!$storage->isCreatable('') or !$storage->isCreatable('files'))
) {
if ($storage->file_exists('') or $storage->getCache()->inCache('')) {
throw new ForbiddenException();
} else {// if the root exists in neither the cache nor the storage the user isn't setup yet
break;
}
}
$relativePath = $mount->getInternalPath($dir);
$scanner = $storage->getScanner();