summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc
Side-by-side diff
Diffstat (limited to 'noncore/net/opieirc') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmessage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/net/opieirc/ircmessage.cpp b/noncore/net/opieirc/ircmessage.cpp
index da8db77..f4b09bc 100644
--- a/noncore/net/opieirc/ircmessage.cpp
+++ b/noncore/net/opieirc/ircmessage.cpp
@@ -39,7 +39,7 @@ IRCMessage::IRCMessage(QString line) {
stream >> temp;
if (temp.startsWith(":")) {
/* last parameter */
- m_trailing = line.right(line.length() - line.find(QChar(':'), 1) - 1);
+ m_trailing = line.right(line.length() - line.find(" :") - 2);
m_parameters << m_trailing;
break;
} else {