Correctly send /list parameters

This commit is contained in:
Pavel Djundik 2017-07-28 13:53:41 +03:00
parent 81ac90f2c1
commit df698ab3ea

View file

@ -4,6 +4,6 @@ exports.commands = ["list"];
exports.input = function(network, chan, cmd, args) {
network.chanCache = [];
network.irc.list(args);
network.irc.list.apply(network.irc, args);
return true;
};