|
|
|
@ -38,6 +38,7 @@ use OC\Files\Filesystem; |
|
|
|
|
use OC\Hooks\BasicEmitter; |
|
|
|
|
use OCP\Config; |
|
|
|
|
use OCP\Files\Cache\IScanner; |
|
|
|
|
use OCP\Files\ForbiddenException; |
|
|
|
|
use OCP\Files\Storage\ILockingStorage; |
|
|
|
|
use OCP\Lock\ILockingProvider; |
|
|
|
|
|
|
|
|
@ -140,7 +141,11 @@ class Scanner extends BasicEmitter implements IScanner { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$data = $this->getData($file); |
|
|
|
|
try { |
|
|
|
|
$data = $this->getData($file); |
|
|
|
|
} catch (ForbiddenException $e) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if ($data) { |
|
|
|
|
|
|
|
|
|