From 81ac90f2c1fdac88c7fb21fbaef2b434ac7eb598 Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" Date: Thu, 27 Jul 2017 19:46:47 +0000 Subject: [PATCH 1/2] fix(package): update irc-framework to version 2.9.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a1fb3a32..c9cb3cb0 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "express": "4.15.3", "express-handlebars": "3.0.0", "fs-extra": "4.0.0", - "irc-framework": "2.8.1", + "irc-framework": "2.9.0", "ldapjs": "1.0.1", "lodash": "4.17.4", "moment": "2.18.1", From df698ab3eabf4aa97818b4bbe0f74489d4e55277 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Fri, 28 Jul 2017 13:53:41 +0300 Subject: [PATCH 2/2] Correctly send /list parameters --- src/plugins/inputs/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/inputs/list.js b/src/plugins/inputs/list.js index 79512a48..4ef63b4a 100644 --- a/src/plugins/inputs/list.js +++ b/src/plugins/inputs/list.js @@ -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; };