Browse Source

Use the share_folder config for remote shares

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v13.0.0beta1
Joas Schilling 7 years ago
parent
commit
b5beaf7ef4
No account linked to committer's email address
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      apps/files_sharing/lib/External/Manager.php

+ 4
- 2
apps/files_sharing/lib/External/Manager.php View File

@@ -30,6 +30,7 @@
namespace OCA\Files_Sharing\External;

use OC\Files\Filesystem;
use OCA\Files_Sharing\Helper;
use OCP\Files;
use OCP\Files\Storage\IStorageFactory;
use OCP\Http\Client\IClientService;
@@ -199,8 +200,9 @@ class Manager {

if ($share) {
\OC_Util::setupFS($this->uid);
$mountPoint = Files::buildNotExistingFileName('/', $share['name']);
$mountPoint = Filesystem::normalizePath('/' . $mountPoint);
$shareFolder = Helper::getShareFolder();
$mountPoint = Files::buildNotExistingFileName($shareFolder, $share['name']);
$mountPoint = Filesystem::normalizePath($mountPoint);
$hash = md5($mountPoint);

$acceptShare = $this->connection->prepare('

Loading…
Cancel
Save