summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPytal <24800714+Pytal@users.noreply.github.com>2021-09-17 12:52:02 -0700
committerGitHub <noreply@github.com>2021-09-17 12:52:02 -0700
commitb033d57e130ec13d69e10b8ef43ea7d308e3428f (patch)
tree9c32211836dc24dd53a5da52806e6dd6fa952b1d /apps
parent3eb1d23720768d7df5f9340330d9ec76f6e96a51 (diff)
parentf7811352157126c508102f90fa515fb2b2853ebf (diff)
downloadnextcloud-server-b033d57e130ec13d69e10b8ef43ea7d308e3428f.tar.gz
nextcloud-server-b033d57e130ec13d69e10b8ef43ea7d308e3428f.zip
Merge pull request #28872 from nextcloud/fix/files-view-undefined-currentFileList
Fix files view change and undefined currentFileList
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/gotoplugin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/gotoplugin.js b/apps/files/js/gotoplugin.js
index d686c7850cf..f02fcc6e4dc 100644
--- a/apps/files/js/gotoplugin.js
+++ b/apps/files/js/gotoplugin.js
@@ -46,7 +46,7 @@
actionHandler: function (fileName, context) {
var fileModel = context.fileInfoModel;
OC.Apps.hideAppSidebar($('.detailsView'));
- OCA.Files.App.setActiveView('files', {silent: true});
+ OCA.Files.App.setActiveView('files');
OCA.Files.App.fileList.changeDirectory(fileModel.get('path'), true, true).then(function() {
OCA.Files.App.fileList.scrollTo(fileModel.get('name'));
});