cgserver 6.4.13 → 6.4.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -25,7 +25,7 @@ class AsyncQueueItem {
|
|
|
25
25
|
if (!funcitem.func) {
|
|
26
26
|
continue;
|
|
27
27
|
}
|
|
28
|
-
let rs = await cgserver_1.core.safeCall(funcitem.func, funcitem.thisArg, funcitem.params);
|
|
28
|
+
let rs = await cgserver_1.core.safeCall(funcitem.func, funcitem.thisArg, ...funcitem.params);
|
|
29
29
|
await cgserver_1.core.safeCall(funcitem.resolve, null, rs);
|
|
30
30
|
}
|
|
31
31
|
this.running = false;
|