Don't call first() twice in processAsync()

This commit is contained in:
Dan Stillman 2009-08-19 21:12:57 +00:00
parent 8455b4ce0a
commit 4e48c32a0e

View file

@ -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