summaryrefslogtreecommitdiffstats
path: root/apps/files_external/js/app.js
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-11-18 17:54:00 +0100
committerLukas Reschke <lukas@owncloud.com>2015-11-22 16:05:51 +0100
commitec3166742b08eabcca2c6d2166070b4cee488bf7 (patch)
treed6a8a1fb25e8b39373bb7499a67d2721903c11d7 /apps/files_external/js/app.js
parent7ec83fc9fbb7428bde4cf0e1071704c941ac1f37 (diff)
downloadnextcloud-server-ec3166742b08eabcca2c6d2166070b4cee488bf7.tar.gz
nextcloud-server-ec3166742b08eabcca2c6d2166070b4cee488bf7.zip
Properly join path sections
This prevents double slashes that can mess up path comparisons in some cases.
Diffstat (limited to 'apps/files_external/js/app.js')
-rw-r--r--apps/files_external/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/app.js b/apps/files_external/js/app.js
index bf853f926dc..1bff3014bd6 100644
--- a/apps/files_external/js/app.js
+++ b/apps/files_external/js/app.js
@@ -54,7 +54,7 @@ OCA.External.App = {
// folder in the files app instead of opening it directly
fileActions.register('dir', 'Open', OC.PERMISSION_READ, '', function (filename, context) {
OCA.Files.App.setActiveView('files', {silent: true});
- OCA.Files.App.fileList.changeDirectory(context.$file.attr('data-path') + '/' + filename, true, true);
+ OCA.Files.App.fileList.changeDirectory(OC.joinPaths(context.$file.attr('data-path'), filename), true, true);
});
fileActions.setDefault('dir', 'Open');
return fileActions;