mirror of
https://github.com/nextcloud/server.git
synced 2026-05-25 02:34:12 -04:00
Merge pull request #34289 from nextcloud/fix/url-encode-webdav-url
Url encode the web dav url for copying
This commit is contained in:
commit
663751cf78
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,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