properly reload favorites list

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2017-04-21 14:20:34 +02:00
parent 140580f9d8
commit c49def4a10
No known key found for this signature in database
GPG Key ID: CBCA68FBAEBF98C9
1 changed files with 6 additions and 0 deletions

View File

@ -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);
}
}
});