From bff95a3f7a98cc14768b911699e42314fb0b7c46 Mon Sep 17 00:00:00 2001 From: HanzZ Date: Sat, 27 Oct 2012 16:21:25 +0200 Subject: [PATCH] Call IrcCommand::createList with two arguments --- backends/libcommuni/session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/libcommuni/session.cpp b/backends/libcommuni/session.cpp index 7b86f99f..91a7fee8 100644 --- a/backends/libcommuni/session.cpp +++ b/backends/libcommuni/session.cpp @@ -43,7 +43,7 @@ void MyIrcSession::on_connected() { if (suffix.empty()) { np->handleConnected(user); if (!sentList) { - sendCommand(IrcCommand::createList("")); + sendCommand(IrcCommand::createList("", "")); sentList = true; } }