Bug 107855 - When someone leaves the server, the passive popup dialogue says it's me who leaves the server
Summary: When someone leaves the server, the passive popup dialogue says it's me who l...
Status: RESOLVED FIXED
Alias: None
Product: konversation
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR normal
Target Milestone: ---
Assignee: Konversation Developers
URL:
Keywords:
: 106535 (view as bug list)
Depends on:
Blocks:
 
Reported: 2005-06-21 16:08 UTC by Tijmen Baarda
Modified: 2005-06-22 01:22 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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. ***