From kde-commits Sun Oct 31 22:15:41 2004 From: Shintaro Matsuoka Date: Sun, 31 Oct 2004 22:15:41 +0000 To: kde-commits Subject: kdeextragear-2/konversation/konversation Message-Id: <20041031221541.0915316BA5 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=109926094815647 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());