Merge pull request #4423 from nextcloud/reload-fav-view

properly reload favorites list
pull/4429/head
Morris Jobke 2017-04-21 09:35:34 +07:00 committed by GitHub
commit 5605166523
1 changed files with 6 additions and 0 deletions

@ -94,6 +94,12 @@ $(document).ready(function() {
}
return OCA.Files.FileList.prototype.reloadCallback.call(this, status, result);
},
_onUrlChanged: function (e) {
if (e && _.isString(e.dir)) {
this.changeDirectory(e.dir, false, true);
}
}
});