Merge pull request #31136 from nextcloud/backport/30985/stable22

[stable22] Use the unjailed-path in OC_Helper::getStorageInfo() for files located in SharedStorage.
This commit is contained in:
Simon L 2022-02-21 12:35:49 +01:00 committed by GitHub
commit 55ce97c5ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -506,6 +506,9 @@ class OC_Helper {
if ($storage->instanceOfStorage('\OCA\Files_Sharing\SharedStorage')) {
$includeExtStorage = false;
$sourceStorage = $storage->getSourceStorage();
$internalPath = $storage->getUnjailedPath($rootInfo->getInternalPath());
} else {
$internalPath = $rootInfo->getInternalPath();
}
if ($includeExtStorage) {
if ($storage->instanceOfStorage('\OC\Files\Storage\Home')
@ -528,7 +531,7 @@ class OC_Helper {
/** @var \OC\Files\Storage\Wrapper\Quota $storage */
$quota = $sourceStorage->getQuota();
}
$free = $sourceStorage->free_space($rootInfo->getInternalPath());
$free = $sourceStorage->free_space($internalPath);
if ($free >= 0) {
$total = $free + $used;
} else {