thelounge/src/plugins/inputs/list.js
2017-07-28 13:53:41 +03:00

10 lines
184 B
JavaScript

"use strict";
exports.commands = ["list"];
exports.input = function(network, chan, cmd, args) {
network.chanCache = [];
network.irc.list.apply(network.irc, args);
return true;
};