diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-10-11 12:20:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 12:20:07 +0200 |
commit | fe45db6ae27715c1d9484accf44531c510ea91c9 (patch) | |
tree | a42a40ad9f9e3cd5a9f2baf14f3de2b449292dc0 /core | |
parent | fa15c5e636398535b29801c3d233dc3661e7d772 (diff) | |
parent | 0f030d885b735fa52536578d2cd269e3e9e39ffa (diff) | |
download | nextcloud-server-fe45db6ae27715c1d9484accf44531c510ea91c9.tar.gz nextcloud-server-fe45db6ae27715c1d9484accf44531c510ea91c9.zip |
Merge pull request #11744 from burned42/fix_percent_sign_breaking_all_files_view
Remove duplicate call to decodeURIComponent
Diffstat (limited to 'core')
-rw-r--r-- | core/js/files/client.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/js/files/client.js b/core/js/files/client.js index aa450df1773..f3838dd359a 100644 --- a/core/js/files/client.js +++ b/core/js/files/client.js @@ -281,8 +281,6 @@ path = path.substr(0, path.length - 1); } - path = decodeURIComponent(path); - if (response.propStat.length === 0 || response.propStat[0].status !== 'HTTP/1.1 200 OK') { return null; } |