processes params length thuncation fix

This commit is contained in:
Sebastian Hildebrandt 2022-12-22 10:33:39 +01:00
parent 27520abe27
commit b1c2497cfc

View File

@ -280,7 +280,7 @@ function parseHead(head, rights) {
space = head[i] === ' ';
}
}
to = 1000;
to = 2000;
result.push({
from: from,
to: to,
@ -423,7 +423,7 @@ function powerShellRelease() {
function powerShell(cmd) {
if (_psPersistent) {
const id = Math.random().toString(36).substr(2, 10);
const id = Math.random().toString(36).substring(2, 12);
return new Promise((resolve) => {
process.nextTick(() => {
function callback(data) {