FIX #264 by @OS3DrNick

Seems that I forgot to check if there is no need to export files on that callback nightmare
This commit is contained in:
WolFi 2017-09-30 14:49:21 +02:00
parent 5ffe28d069
commit 4d82e7db7a
No known key found for this signature in database
GPG key ID: 7D15585354D072FF

View file

@ -98,6 +98,11 @@ if (!window['PassmanExporter']) {
}).bind(this));
}
}
// We have finished downloading everything, so let's hand over job to somewhere else!
if (this.parent.total === 0) {
this.call_then(this.parent.cred);
}
}, t);
}
};