Removed unnecessary trim() from console help

This commit is contained in:
Bryan Roe 2019-09-27 10:34:07 -07:00
parent 327c8481f9
commit 7e07e8cd80

View File

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