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:
parent
7ee7dc79f0
commit
d5e67d6503
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user