Merge pull request #320 from maxpoulin64/fix-space
Fix sending messages starting with a space
This commit is contained in:
commit
0599a40df7
@ -271,7 +271,7 @@ Client.prototype.setPassword = function(hash) {
|
|||||||
|
|
||||||
Client.prototype.input = function(data) {
|
Client.prototype.input = function(data) {
|
||||||
var client = this;
|
var client = this;
|
||||||
var text = data.text.trim();
|
var text = data.text;
|
||||||
var target = client.find(data.target);
|
var target = client.find(data.target);
|
||||||
|
|
||||||
// This is either a normal message or a command escaped with a leading '/'
|
// This is either a normal message or a command escaped with a leading '/'
|
||||||
|
@ -1,19 +1,11 @@
|
|||||||
exports.commands = ["msg", "say"];
|
exports.commands = ["msg", "say"];
|
||||||
|
|
||||||
exports.input = function(network, chan, cmd, args) {
|
exports.input = function(network, chan, cmd, args) {
|
||||||
if (args.length === 0 || args[0] === "") {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
var irc = network.irc;
|
var irc = network.irc;
|
||||||
var target = "";
|
var target = cmd === "msg" ? args.shift() : chan.name;
|
||||||
if (cmd === "msg") {
|
|
||||||
target = args.shift();
|
if (args.length === 0 || !target) {
|
||||||
if (args.length === 0) {
|
return true;
|
||||||
return true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
target = chan.name;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var msg = args.join(" ");
|
var msg = args.join(" ");
|
||||||
|
Loading…
Reference in New Issue
Block a user