diff --git a/backends/libcommuni/main.cpp b/backends/libcommuni/main.cpp index 4509b9af50c331305afe5906692f594260293ff5..99b3bc58ac851a57b3911777444e7ed3441e328a 100644 --- a/backends/libcommuni/main.cpp +++ b/backends/libcommuni/main.cpp @@ -16,7 +16,6 @@ #include #include "Swiften/EventLoop/Qt/QtEventLoop.h" #include "ircnetworkplugin.h" -#include "singleircnetworkplugin.h" using namespace boost::program_options; using namespace Transport; @@ -40,12 +39,7 @@ int main (int argc, char* argv[]) { Swift::QtEventLoop eventLoop; - if (!CONFIG_HAS_KEY(cfg, "service.irc_server")) { - np = new IRCNetworkPlugin(cfg, &eventLoop, host, port); - } - else { - np = new SingleIRCNetworkPlugin(cfg, &eventLoop, host, port); - } + np = new IRCNetworkPlugin(cfg, &eventLoop, host, port); return app.exec(); }