Skip to content

Commit

Permalink
Update master
Browse files Browse the repository at this point in the history
  • Loading branch information
dimatron committed Jun 27, 2012
1 parent da740a6 commit 433a908
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -80,7 +80,7 @@ function Queue(dbQuery, resumeMainQueue, options) {
//Run everything in the queue //Run everything in the queue
that.executing = true; that.executing = true;
var done = 0, total = that.queue.length; var done = 0, total = that.queue.length;
for(var i in that.queue) for(var i = 0; i < total; i ++)
{ {
(function(item) { (function(item) {
//Execute the query //Execute the query
Expand Down

0 comments on commit 433a908

Please sign in to comment.