[Konversation-devel] [Bug 97354] channel list in whois reply isn't always parsed correctly
ismail donmez ( cartman )
ismail at kde.org
Thu Jul 1 16:01:06 CEST 2010
https://bugs.kde.org/show_bug.cgi?id=97354
--- Comment #5 from ismail ( cartman ) donmez <ismail kde org> 2010-07-01 16:00:54 ---
commit ddd2d8d7f6204a8f29531483b9b938013d44ac76
Author: İsmail Dönmez <ismail at kde.org>
Date: Sat Mar 26 18:29:41 2005 +0000
Fix whois replies containing @+ correctly. Fixes first part of #97354
CCBUG:97354
svn path=/trunk/kdeextragear-2/konversation/; revision=400820
diff --git a/konversation/inputfilter.cpp b/konversation/inputfilter.cpp
index 347a835..98a66f2 100644
--- a/konversation/inputfilter.cpp
+++ b/konversation/inputfilter.cpp
@@ -889,6 +889,11 @@ void InputFilter::parseServerCommand(const QString
&prefix, const QString &comma
ownerChannels.append(lookChannel.mid(1));
server->setChannelNick(lookChannel.mid(1), parameterList[1], 8);
}
+ else if(lookChannel.startsWith("@+"))
+ {
+ opChannels.append(lookChannel.mid(2));
+ server->setChannelNick(lookChannel.mid(2), parameterList[1], 4);
+ }
else if(lookChannel.startsWith("@"))
{
opChannels.append(lookChannel.mid(1));
--
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the Konversation-devel
mailing list