diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-03-05 18:46:55 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-03-05 18:46:55 +0100 |
commit | 1ab10cb4f7e085f957198e05e727c81b2c9b27a9 (patch) | |
tree | 816cd80b0c1a7879fe8853438fa0091e6af6d157 | |
parent | 0980c485269da052ca5dcf9cc55d4417c930e6f6 (diff) | |
download | nextcloud-server-1ab10cb4f7e085f957198e05e727c81b2c9b27a9.tar.gz nextcloud-server-1ab10cb4f7e085f957198e05e727c81b2c9b27a9.zip |
Do not set #dir when on public.php
Fix #7571
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 550c10dba3e..9a64035d72a 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1156,9 +1156,9 @@ $(document).ready(function() { // need to initially switch the dir to the one from the hash (IE8) FileList.changeDirectory(parseCurrentDirFromUrl(), false, true); } - } - FileList.setCurrentDir(parseCurrentDirFromUrl(), false); + FileList.setCurrentDir(parseCurrentDirFromUrl(), false); + } FileList.createFileSummary(); }); |