mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 07:08:34 -04:00
add missing var
This commit is contained in:
parent
951ff0897c
commit
31ea10b04e
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
||||
})();
|
||||
})();
|
||||
|
|
|
|||
Loading…
Reference in a new issue