mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-02-15 04:21:51 +00:00
Removed unnecessary trim() from console help
This commit is contained in:
parent
2e02e0e641
commit
7e8f80135a
1 changed files with 2 additions and 2 deletions
|
@ -1696,10 +1696,10 @@ function createMeshCore(agent)
|
||||||
fin += (f + ',\r\n');
|
fin += (f + ',\r\n');
|
||||||
f = '';
|
f = '';
|
||||||
}
|
}
|
||||||
f += (((f != '') ? ', ' : ' ') + availcommands.shift().trim());
|
f += (((f != '') ? ', ' : ' ') + availcommands.shift());
|
||||||
}
|
}
|
||||||
if (f != '') { fin += f; }
|
if (f != '') { fin += f; }
|
||||||
response = 'Available commands: \r\n ' + fin.trim() + '.';
|
response = 'Available commands: \r\n' + fin + '.';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue