CVS commit by shin: fix: don't add WHOIS line into the WHO history list M +1 -1 server.cpp 1.372 --- kdeextragear-2/konversation/konversation/server.cpp #1.371:1.372 @@ -1114,5 +1114,5 @@ void Server::send() // remember the arg for /WHO to identify the responses - else if(outputLine.upper().startsWith("WHO")) + else if(outputLine.upper().startsWith("WHO ")) inputFilter.addWhoRequest(outputLine.section(" ",1,1,QString::SectionSkipEmpty).stripWhiteSpace());