decode foldernames in breadcrumb

This commit is contained in:
Johannes Zellner
2020-12-04 18:39:10 +01:00
parent 7108d0fe31
commit ed96c83953

View File

@@ -317,7 +317,7 @@ app.controller('FileManagerController', ['$scope', '$translate', '$timeout', 'Cl
location.hash = path;
$scope.cwd = path;
$scope.cwdParts = path.split('/').filter(function (p) { return !!p; }).map(function (p, i) { return { name: p, path: path.split('/').slice(0, i+1).join('/') }; });
$scope.cwdParts = path.split('/').filter(function (p) { return !!p; }).map(function (p, i) { return { name: decodeURIComponent(p), path: path.split('/').slice(0, i+1).join('/') }; });
$scope.refresh();
};