Create proper target path for shared storage fopen event

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2020-09-17 09:52:31 +02:00
parent 05edd1e5d6
commit 5eb808b763
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
}
}
$info = [
'target' => $this->getMountPoint() . $path,
'target' => $this->getMountPoint() . '/' . $path,
'source' => $source,
'mode' => $mode,
];