Bug 107855

Summary: When someone leaves the server, the passive popup dialogue says it's me who leaves the server
Product: [Applications] konversation Reporter: Tijmen Baarda <tijmenbaarda>
Component: generalAssignee: Konversation Developers <konversation-devel>
Status: RESOLVED FIXED    
Severity: normal CC: achiestdragon
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Tijmen Baarda 2005-06-21 16:08:21 UTC
Version:           0.18 (using KDE KDE 3.4.0)
Installed from:    Compiled From Sources
Compiler:          gcc 3.3.5 Debian version
OS:                Linux

I maked Konversation to show passive popup dialogues (those which appear in the taskbar) when people leave the channel or the server.

But when someone leaves the server, the passive popup dialogue says that I am the one who leaves the server instead of the person that actually leaves. The IRC view shows the right thing.
Comment 1 Gary Cramblitt 2005-06-22 01:13:18 UTC
SVN commit 427817 by cramblitt:

BUG:107855 Emit correct nickname event to KNotify on nick quit.

 M  +1 -1      inputfilter.cpp  


--- trunk/extragear/network/konversation/src/inputfilter.cpp #427816:427817
@@ -461,7 +461,7 @@
         server->removeNickFromServer(sourceNick,trailing);
         if(sourceNick != server->getNickname())
         {
-            konv_app->notificationHandler()->quit(server->getStatusView(), server->getNickname());
+            konv_app->notificationHandler()->quit(server->getStatusView(), sourceNick);
         }
     }
     else if(command=="nick")
Comment 2 Gary Cramblitt 2005-06-22 01:22:27 UTC
*** Bug 106535 has been marked as a duplicate of this bug. ***