diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-10-27 11:51:54 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-10-27 11:51:54 +0100 |
commit | f24386c4913c9e108bdfb8bee15190eaf3e61cab (patch) | |
tree | 750fc573bb090217a203eb2919e6cbf96f6b744e /apps/files | |
parent | d7d5a3bab51d952e05965e84b784d7eff0efc9c9 (diff) | |
download | nextcloud-server-f24386c4913c9e108bdfb8bee15190eaf3e61cab.tar.gz nextcloud-server-f24386c4913c9e108bdfb8bee15190eaf3e61cab.zip |
Fix file list reload callback result
All reloadCallback must return either true for success or false in case
of failure / non-existing folder.
Some file lists only have a root folder (favorite, shares), so restrict
the path to that to avoid having a wrong path in the breadcrumbs.
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/favoritesfilelist.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/files/js/favoritesfilelist.js b/apps/files/js/favoritesfilelist.js index 4e7db9f17ba..e6532ab188c 100644 --- a/apps/files/js/favoritesfilelist.js +++ b/apps/files/js/favoritesfilelist.js @@ -71,6 +71,10 @@ $(document).ready(function() { if (this._reloadCall) { this._reloadCall.abort(); } + + // there is only root + this._setCurrentDir('/', false); + this._reloadCall = $.ajax({ url: OC.generateUrl('/apps/files/api/v1/tags/{tagName}/files', {tagName: tagName}), type: 'GET', @@ -86,10 +90,9 @@ $(document).ready(function() { if (result.files) { this.setFiles(result.files.sort(this._sortComparator)); + return true; } - else { - // TODO: error handling - } + return false; } }); |