Browse Source
Merge pull request #22902 from nextcloud/fix/16696/proper-target-path-for-share-event
Create proper target path for shared storage fopen event
pull/22915/head
Morris Jobke
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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, |
|
|
|
]; |
|
|
|