mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 07:05:52 -05:00
Removed unnecessary trim() from console help
This commit is contained in:
parent
327c8481f9
commit
7e07e8cd80
@ -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 New Issue
Block a user