summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChon Kou <k.kou@alumni.ubc.ca>2017-09-16 23:29:22 -0700
committerChon Kou <k.kou@alumni.ubc.ca>2017-09-16 23:57:24 -0700
commit6ec667bbc744d03c6e947e0678d3bdebd9871514 (patch)
tree154a97f8ed5ed3f29a878c60b09e46a5f29f4665 /apps
parentcdb6b0295abaf9138e4bbc928acf12714c1a232a (diff)
downloadnextcloud-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.js2
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();
}
},