Strip whitespace from message to send to current channel

This commit is contained in:
Tristan B. Kildaire 2020-09-28 11:42:32 +02:00
parent 819abf1faa
commit 50ddd8a1ca
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ void commandLine()
}
else
{
dclient.sendMessage(false, currentChannel, commandLine);
dclient.sendMessage(false, currentChannel, strip(commandLine));
}
}