diff --git a/core/js/files/client.js b/core/js/files/client.js index 6ddd8b3555..9d3f5c4a3d 100644 --- a/core/js/files/client.js +++ b/core/js/files/client.js @@ -271,7 +271,7 @@ * @return {Array.} array of file info */ _parseFileInfo: function(response) { - var path = response.href; + var path = decodeURIComponent(response.href); if (path.substr(0, this._root.length) === this._root) { path = path.substr(this._root.length); }