Merge pull request #1379 from thelounge/greenkeeper/irc-framework-2.9.0

Update irc-framework to the latest version 🚀
This commit is contained in:
Pavel Djundik 2017-07-31 01:59:49 +03:00 committed by GitHub
commit 30e167c42c
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@
"express": "4.15.3", "express": "4.15.3",
"express-handlebars": "3.0.0", "express-handlebars": "3.0.0",
"fs-extra": "4.0.0", "fs-extra": "4.0.0",
"irc-framework": "2.8.1", "irc-framework": "2.9.0",
"ldapjs": "1.0.1", "ldapjs": "1.0.1",
"lodash": "4.17.4", "lodash": "4.17.4",
"moment": "2.18.1", "moment": "2.18.1",

View File

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