Merge pull request #26271 from nextcloud/backport/26270/stable21

[stable21] Catch invalid cache source storage path
This commit is contained in:
Morris Jobke 2021-03-24 14:09:03 +01:00 committed by GitHub
commit e5dc0b7ad1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -642,6 +642,10 @@ class Cache implements ICache {
$targetPath = $this->normalize($targetPath);
$sourceData = $sourceCache->get($sourcePath);
if ($sourceData === false) {
throw new \Exception('Invalid source storage path: ' . $sourcePath);
}
$sourceId = $sourceData['fileid'];
$newParentId = $this->getParentId($targetPath);