1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-08-30 05:55:15 +02:00

add missing var

Dieser Commit ist enthalten in:
Robin Appelman 2016-07-05 23:18:06 +02:00 committet von Lukas Reschke
Ursprung 951ff0897c
Commit 31ea10b04e
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B9F6980CF6E759B1

Datei anzeigen

@ -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;
})();
})();