summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/SharedMount.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-08-16 20:10:45 +0200
committerRobin Appelman <robin@icewind.nl>2018-08-16 21:27:48 +0200
commitb79f338e71c37689e39c95633a92e1ed8ed79db7 (patch)
tree0ae3a3b9df12ff9a5b37a9cd4f33a17f2f48d59b /apps/files_sharing/lib/SharedMount.php
parentbc4f10ad838ee2c91161b0e678ed5604de1d9364 (diff)
downloadnextcloud-server-b79f338e71c37689e39c95633a92e1ed8ed79db7.tar.gz
nextcloud-server-b79f338e71c37689e39c95633a92e1ed8ed79db7.zip
re-use view instances for shared storages
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing/lib/SharedMount.php')
-rw-r--r--apps/files_sharing/lib/SharedMount.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/lib/SharedMount.php b/apps/files_sharing/lib/SharedMount.php
index 40553ef397a..37aa7220620 100644
--- a/apps/files_sharing/lib/SharedMount.php
+++ b/apps/files_sharing/lib/SharedMount.php
@@ -61,19 +61,19 @@ class SharedMount extends MountPoint implements MoveableMount {
/**
* @param string $storage
* @param SharedMount[] $mountpoints
- * @param array|null $arguments
+ * @param array $arguments
* @param \OCP\Files\Storage\IStorageFactory $loader
+ * @param View $recipientView
*/
- public function __construct($storage, array $mountpoints, $arguments = null, $loader = null) {
+ public function __construct($storage, array $mountpoints, $arguments, $loader, $recipientView) {
$this->user = $arguments['user'];
- $this->recipientView = new View('/' . $this->user . '/files');
+ $this->recipientView = $recipientView;
$this->superShare = $arguments['superShare'];
$this->groupedShares = $arguments['groupedShares'];
$newMountPoint = $this->verifyMountPoint($this->superShare, $mountpoints);
$absMountPoint = '/' . $this->user . '/files' . $newMountPoint;
- $arguments['ownerView'] = new View('/' . $this->superShare->getShareOwner() . '/files');
parent::__construct($storage, $absMountPoint, $arguments, $loader);
}