diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-09-17 11:53:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-17 11:53:28 +0200 |
commit | 681e51c0efde852a8b7bcd43c7bf504e7a0e3c52 (patch) | |
tree | 8d41ae10bdd9677ca2b3268be372ee01e8f29c09 /apps | |
parent | b0c04a3e0c2d2c8f99e112afc410441aa36093a1 (diff) | |
parent | 5eb808b763bd2347b82471cbeec9ab9e9d86ded7 (diff) | |
download | nextcloud-server-681e51c0efde852a8b7bcd43c7bf504e7a0e3c52.tar.gz nextcloud-server-681e51c0efde852a8b7bcd43c7bf504e7a0e3c52.zip |
Merge pull request #22902 from nextcloud/fix/16696/proper-target-path-for-share-event
Create proper target path for shared storage fopen event
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/SharedStorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/SharedStorage.php b/apps/files_sharing/lib/SharedStorage.php index 7625c0bba44..d7c9a8081dd 100644 --- a/apps/files_sharing/lib/SharedStorage.php +++ b/apps/files_sharing/lib/SharedStorage.php @@ -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, ]; |