Removed unnecessary trim() from console help

This commit is contained in:
Bryan Roe 2019-09-27 10:34:07 -07:00
parent 2e02e0e641
commit 7e8f80135a
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
/*