add missing var

This commit is contained in:
Robin Appelman 2016-07-05 23:18:06 +02:00 提交者 Lukas Reschke
父節點 951ff0897c
當前提交 31ea10b04e
沒有發現已知的金鑰在資料庫的簽署中
GPG 金鑰 ID: B9F6980CF6E759B1

查看文件

@ -70,7 +70,7 @@ var RollingQueue = function (functionList, queueWindow, callback) {
throw "functionList must be an array";
}
for (i = 0; i < this.queueWindow; i++) {
for (var i = 0; i < this.queueWindow; i++) {
this.launchNext();
}
};
@ -134,4 +134,4 @@ if (!OCA.External.StatusManager) {
OCA.External.StatusManager.RollingQueue = RollingQueue;
})();
})();