Merge pull request #22902 from nextcloud/fix/16696/proper-target-path-for-share-event

Create proper target path for shared storage fopen event
This commit is contained in:
Morris Jobke 2020-09-17 11:53:28 +02:00 committed by GitHub
commit 681e51c0ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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