Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2020-09-17 12:53:28 +0300
committerGitHub <noreply@github.com>2020-09-17 12:53:28 +0300
commit681e51c0efde852a8b7bcd43c7bf504e7a0e3c52 (patch)
tree8d41ae10bdd9677ca2b3268be372ee01e8f29c09 /apps/files_sharing/lib
parentb0c04a3e0c2d2c8f99e112afc410441aa36093a1 (diff)
parent5eb808b763bd2347b82471cbeec9ab9e9d86ded7 (diff)
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/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/SharedStorage.php2
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,
];