diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-09-26 17:21:38 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2019-09-28 15:13:56 +0000 |
commit | 90e22c25f120517a8d6cc29f9eb2f3630eae8b06 (patch) | |
tree | b53d49ab67bc9e36ceaad6b5d1790d0522cb4470 /core/src | |
parent | aa80aa412f43b3ab4e2b0175b868c0eb2547956a (diff) | |
download | nextcloud-server-90e22c25f120517a8d6cc29f9eb2f3630eae8b06.tar.gz nextcloud-server-90e22c25f120517a8d6cc29f9eb2f3630eae8b06.zip |
Append / to data('path') for folder content request
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/OC/dialogs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/OC/dialogs.js b/core/src/OC/dialogs.js index 04bac6d63da..b5a2c2c01b3 100644 --- a/core/src/OC/dialogs.js +++ b/core/src/OC/dialogs.js @@ -345,7 +345,7 @@ const Dialogs = { if (checkInput()) { var newname = $input.val(); self.filepicker.filesClient.createDirectory(self.$filePicker.data('path') + "/" + newname).always(function (status) { - self._fillFilePicker(self.$filePicker.data('path') + newname); + self._fillFilePicker(self.$filePicker.data('path') + "/" + newname); }); OC.hideMenus(); self.$filePicker.ocdialog('unsetEnterCallback'); |