mirror of
https://github.com/nextcloud/server.git
synced 2026-03-12 13:44:53 -04:00
Url encode the web dav url for copying
Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
f7034ba8be
commit
abab89aeaa
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ class ViewController extends Controller {
|
|||
$nav->assign('quota', $storageInfo['quota']);
|
||||
$nav->assign('usage_relative', $storageInfo['relative']);
|
||||
|
||||
$nav->assign('webdav_url', \OCP\Util::linkToRemote('dav/files/' . $user));
|
||||
$nav->assign('webdav_url', \OCP\Util::linkToRemote('dav/files/' . rawurlencode($user)));
|
||||
|
||||
$contentItems = [];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue