Fix /part command

Fixes the /part command closing the wrong window. The current implementation simply passes all arguments to slate, which ended up parting every arguments.

This changes the command to `/part message`, and always parts the current window. This will be fixed further once irc-framework is merged.
This commit is contained in:
Maxime Poulin 2016-03-26 16:13:34 -04:00
parent 7ee7dc79f0
commit d5e67d6503
1 changed files with 1 additions and 4 deletions

View File

@ -17,10 +17,7 @@ exports.input = function(network, chan, cmd, args) {
if (chan.type === "channel") {
var irc = network.irc;
if (args.length === 0) {
args.push(chan.name);
}
irc.part(args);
irc.part(chan.name, args.join(" "));
}
network.channels = _.without(network.channels, chan);