summaryrefslogtreecommitdiff
path: root/TConnection.cpp
diff options
context:
space:
mode:
authorFlorian Jung <florian.a.jung@web.de>2013-02-16 16:48:22 +0100
committerFlorian Jung <florian.a.jung@web.de>2013-02-16 16:48:22 +0100
commite57383a387729e496591aa878fc13ab1f9426461 (patch)
tree345b8fe0b46720bccd54f14ceccb9e5d21c79cbc /TConnection.cpp
parent74377ece178e661194a40fa79238b3089bb0d0f2 (diff)
JOIN gefixt
Diffstat (limited to 'TConnection.cpp')
-rw-r--r--TConnection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TConnection.cpp b/TConnection.cpp
index eb1271b..42fdf13 100644
--- a/TConnection.cpp
+++ b/TConnection.cpp
@@ -511,7 +511,7 @@ void TConnection::interpret_message(ircmessage msg) //ggf. neue sessions öffnen
if (ucase(msg.command)=="JOIN")
if (ucase(msg.origin)==ucase(nick))
- chans.push_back(new TChannel(msg.content,this));
+ chans.push_back(new TChannel(msg.params,this));
if (ucase(msg.command)=="PART")
if (ucase(msg.origin)==ucase(nick))