diff options
author | Chon Kou <k.kou@alumni.ubc.ca> | 2017-09-16 23:29:22 -0700 |
---|---|---|
committer | Chon Kou <k.kou@alumni.ubc.ca> | 2017-09-16 23:57:24 -0700 |
commit | 6ec667bbc744d03c6e947e0678d3bdebd9871514 (patch) | |
tree | 154a97f8ed5ed3f29a878c60b09e46a5f29f4665 /apps | |
parent | cdb6b0295abaf9138e4bbc928acf12714c1a232a (diff) | |
download | nextcloud-server-6ec667bbc744d03c6e947e0678d3bdebd9871514.tar.gz nextcloud-server-6ec667bbc744d03c6e947e0678d3bdebd9871514.zip |
Force refresh file list when clicking on breadcrumb even if target directory equals current directory.
Signed-off-by: Chon Kou <k.kou@alumni.ubc.ca>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 9e4d3983ea0..95fbc2b7560 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -837,7 +837,7 @@ if ($targetDir !== undefined && e.which === 1) { e.preventDefault(); - this.changeDirectory($targetDir); + this.changeDirectory($targetDir, true, true); this.updateSearch(); } }, |