Fix oops broken list position

This commit is contained in:
Bryan Ashby 2017-09-03 20:44:39 -06:00
parent d74e95a198
commit 939dbbf94f
1 changed files with 6 additions and 2 deletions

View File

@ -75,6 +75,11 @@ exports.getModule = class FileAreaList extends MenuModule {
this.filterCriteria = _.get(options, 'extraArgs.filterCriteria'); this.filterCriteria = _.get(options, 'extraArgs.filterCriteria');
this.fileList = _.get(options, 'extraArgs.fileList'); this.fileList = _.get(options, 'extraArgs.fileList');
if(this.fileList) {
// we'll need to adjust position as well!
this.fileListPosition = 0;
}
this.dlQueue = new DownloadQueue(this.client); this.dlQueue = new DownloadQueue(this.client);
if(!this.filterCriteria) { if(!this.filterCriteria) {
@ -351,8 +356,7 @@ exports.getModule = class FileAreaList extends MenuModule {
async.series( async.series(
[ [
function fetchEntryData(callback) { function fetchEntryData(callback) {
if(self.fileList) { if(self.fileList) {
self.fileListPosition = 0;
return callback(null); return callback(null);
} }
return self.loadFileIds(false, callback); // false=do not force return self.loadFileIds(false, callback); // false=do not force