Removed unnecessary trim() from console help
This commit is contained in:
parent
2e02e0e641
commit
7e8f80135a
|
@ -1696,10 +1696,10 @@ function createMeshCore(agent)
|
|||
fin += (f + ',\r\n');
|
||||
f = '';
|
||||
}
|
||||
f += (((f != '') ? ', ' : ' ') + availcommands.shift().trim());
|
||||
f += (((f != '') ? ', ' : ' ') + availcommands.shift());
|
||||
}
|
||||
if (f != '') { fin += f; }
|
||||
response = 'Available commands: \r\n ' + fin.trim() + '.';
|
||||
response = 'Available commands: \r\n' + fin + '.';
|
||||
break;
|
||||
}
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue