summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircmessage.cpp
Side-by-side diff
Diffstat (limited to 'noncore/net/opieirc/ircmessage.cpp') (more/less context) (ignore 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
@@ -36,13 +36,13 @@ IRCMessage::IRCMessage(QString line) {
/* Create a list of all parameters */
while(!(stream.atEnd())) {
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 {
m_parameters << temp;
}
}