Merge pull request #1927 from thelounge/astorije/fix-ctcp

Fix CTCP commands always sent upper-case
This commit is contained in:
Pavel Djundik 2018-02-19 19:06:08 +02:00 committed by GitHub
commit 3ccdee6f00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,6 +4,6 @@ exports.commands = ["ctcp"];
exports.input = function({irc}, chan, cmd, args) {
if (args.length > 1) {
irc.ctcpRequest(args[0], args.slice(1).join(" "));
irc.ctcpRequest(...args);
}
};