diff options
author | Joas Schilling <coding@schilljs.com> | 2017-03-28 17:06:26 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-04-13 12:58:51 +0200 |
commit | 3c1365c0d12a626e8c2b8e1ab35b105f4b88ad2e (patch) | |
tree | 23935b8b8c0df29875cdd1c6d2133bf399a2b724 /lib/public/Share/IShareProvider.php | |
parent | 4bcb7d88b5cbb8d2c83176062dc76c6213a13c48 (diff) | |
download | nextcloud-server-3c1365c0d12a626e8c2b8e1ab35b105f4b88ad2e.tar.gz nextcloud-server-3c1365c0d12a626e8c2b8e1ab35b105f4b88ad2e.zip |
Fix returned paths for remote shares
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Share/IShareProvider.php')
-rw-r--r-- | lib/public/Share/IShareProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Share/IShareProvider.php b/lib/public/Share/IShareProvider.php index fba432f31e7..bac1a5d87f0 100644 --- a/lib/public/Share/IShareProvider.php +++ b/lib/public/Share/IShareProvider.php @@ -197,7 +197,7 @@ interface IShareProvider { * * [ * users => ['user1' => ['node_id' => 42, 'node_path' => '/path'], 'user2' => [...]], - * remote => ['user1' => ['node_id' => 42, 'node_path' => '/path'], 'user2' => [...]], + * remote => ['user1' => ['node_id' => 42, 'token' => 'ShareToken'], 'user2' => [...]], * mail => bool * public => bool * ] |