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
parent
commit
681e51c0ef
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/files_sharing/lib/SharedStorage.php

2
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,
];

Loading…
Cancel
Save