thelounge
Version:
The self-hosted Web IRC client
16 lines (13 loc) • 440 B
JavaScript
;
exports.commands = ["whois"];
exports.input = function(network, chan, cmd, args) {
if (args.length === 1) {
// This queries server of the other user and not of the current user, which
// does not know idle time.
// See http://superuser.com/a/272069/208074.
network.irc.raw("WHOIS", args[0], args[0]);
} else {
// Re-assembling the command parsed in client.js
network.irc.raw(`${cmd} ${args.join(" ")}`);
}
};