Don't call first() twice in processAsync()
This commit is contained in:
parent
8455b4ce0a
commit
4e48c32a0e
1 changed files with 1 additions and 1 deletions
|
@ -569,8 +569,8 @@ Zotero.Utilities.prototype.processAsync = function (sets, callbacks, onDone) {
|
|||
callbacks[0](currentSet, nextCallback);
|
||||
};
|
||||
var nextCallback = function () {
|
||||
callbacks[index](currentSet, nextCallback);
|
||||
index++;
|
||||
callbacks[index](currentSet, nextCallback);
|
||||
};
|
||||
|
||||
// Add a final callback to proceed to the next set
|
||||
|
|
Loading…
Add table
Reference in a new issue