Skip to content

Commit 24e3063

Browse files
committed
- species download stop condition
1 parent 3abb1c3 commit 24e3063

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

grails-app/assets/javascripts/entities.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,9 @@ var entities = (function () {
390390
});
391391

392392
return dbOpen.then(function () {
393-
return convertToJqueryPromise(db.taxon.bulkPut(data));
393+
return convertToJqueryPromise(db.taxon.bulkPut(data)).then(function() {
394+
return data;
395+
});
394396
});
395397
};
396398

@@ -533,7 +535,7 @@ var entities = (function () {
533535

534536
function fetchNext(data) {
535537
data = data || [];
536-
if (data.length != 0 || offset === 0) {
538+
if (data.length == SPECIES_MAX_FETCH) {
537539
onlineGetSpeciesForProjectActivityAndFieldInOutput(offset, projectActivityId, dataFieldName, outputName, SPECIES_MAX_FETCH).then(function (result) {
538540
callback(total, counter);
539541
counter = (counter + 1) % total;

0 commit comments

Comments
 (0)