diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-04-11 11:53:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-11 11:53:01 -0500 |
commit | 45a6e376995a3ef6618b12ee65e6f903e846b1a5 (patch) | |
tree | e5846cb844b7420d68b89e4f7b381e07d4938b68 /apps | |
parent | bd6273ee1c803b8a129fb76135ca23377805da9e (diff) | |
parent | 8c01e45d6b6d57032e78c6c28877b99c28cf73de (diff) | |
download | nextcloud-server-45a6e376995a3ef6618b12ee65e6f903e846b1a5.tar.gz nextcloud-server-45a6e376995a3ef6618b12ee65e6f903e846b1a5.zip |
Merge pull request #4293 from nextcloud/fix_4248
Do reload shared views
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/js/sharedfilelist.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files_sharing/js/sharedfilelist.js b/apps/files_sharing/js/sharedfilelist.js index dccd6027b02..326bd1b5bf8 100644 --- a/apps/files_sharing/js/sharedfilelist.js +++ b/apps/files_sharing/js/sharedfilelist.js @@ -382,6 +382,12 @@ // Sort by expected sort comparator return files.sort(this._sortComparator); + }, + + _onUrlChanged: function(e) { + if (e && _.isString(e.dir)) { + this.changeDirectory(e.dir, false, true); + } } }); |