Skip to content

Commit

Permalink
processes params length thuncation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhildebrandt committed Dec 22, 2022
1 parent 27520ab commit b1c2497
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/util.js
Expand Up @@ -280,7 +280,7 @@ function parseHead(head, rights) {
space = head[i] === ' ';
}
}
to = 1000;
to = 2000;
result.push({
from: from,
to: to,
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit b1c2497

Please sign in to comment.