Fix sending messages starting with a space

There really is no need to trim apart bringing more situations like this. If I want to put spaces in front of my message (say, for alignment purposes), then I should be able to.

Fixes #319
This commit is contained in:
Maxime Poulin 2016-05-10 21:19:09 -04:00
parent 973fa0f4b2
commit 5a3b07a698
No known key found for this signature in database
GPG key ID: CB63C36252F40D4B
2 changed files with 5 additions and 13 deletions

View file

@ -267,7 +267,7 @@ Client.prototype.setPassword = function(hash) {
Client.prototype.input = function(data) {
var client = this;
var text = data.text.trim();
var text = data.text;
var target = client.find(data.target);
// This is either a normal message or a command escaped with a leading '/'

View file

@ -1,19 +1,11 @@
exports.commands = ["msg", "say"];
exports.input = function(network, chan, cmd, args) {
if (args.length === 0 || args[0] === "") {
return true;
}
var irc = network.irc;
var target = "";
if (cmd === "msg") {
target = args.shift();
if (args.length === 0) {
return true;
}
} else {
target = chan.name;
var target = cmd === "msg" ? args.shift() : chan.name;
if (args.length === 0 || !target) {
return true;
}
var msg = args.join(" ");