Merge pull request #23996 from nextcloud/backport/23982/stable20
[stable20] Make sure root storage is valid before checking its size
This commit is contained in:
commit
1a26b63246
|
@ -71,7 +71,10 @@ class Quota extends Wrapper {
|
|||
protected function getSize($path, $storage = null) {
|
||||
if ($this->config->getValue('quota_include_external_storage', false)) {
|
||||
$rootInfo = Filesystem::getFileInfo('', 'ext');
|
||||
return $rootInfo->getSize(true);
|
||||
if ($rootInfo) {
|
||||
return $rootInfo->getSize(true);
|
||||
}
|
||||
return \OCP\Files\FileInfo::SPACE_NOT_COMPUTED;
|
||||
} else {
|
||||
if (is_null($storage)) {
|
||||
$cache = $this->getCache();
|
||||
|
|
Loading…
Reference in New Issue