Merge pull request #26270 from nextcloud/fix/invalid-source-storage-path
Catch invalid cache source storage path
This commit is contained in:
commit
057c72d38b
|
@ -642,6 +642,10 @@ class Cache implements ICache {
|
||||||
$targetPath = $this->normalize($targetPath);
|
$targetPath = $this->normalize($targetPath);
|
||||||
|
|
||||||
$sourceData = $sourceCache->get($sourcePath);
|
$sourceData = $sourceCache->get($sourcePath);
|
||||||
|
if ($sourceData === false) {
|
||||||
|
throw new \Exception('Invalid source storage path: ' . $sourcePath);
|
||||||
|
}
|
||||||
|
|
||||||
$sourceId = $sourceData['fileid'];
|
$sourceId = $sourceData['fileid'];
|
||||||
$newParentId = $this->getParentId($targetPath);
|
$newParentId = $this->getParentId($targetPath);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue