------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=129081
ogoffart kde org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From ogoffart kde org 2006-06-18 11:42 -------
SVN commit 552559 by ogoffart:
Fix Bug 129081: jabber treats contact as account
BUG: 129081
(Don't consider a contact with something before the @ is a transport anymore)
M +4 -0 jabbercontact.cpp
--- branches/kopete/0.12/kopete/protocols/jabber/jabbercontact.cpp
#552558:552559
@ -423,6 +423,8 @
{
if(transport()) //no need to disco if this is a legacy contact
mDiscoDone = true;
+ else if(!rosterItem().jid().node().isEmpty())
+ mDiscoDone = true; //contact with an @ are not
transport for sure
else
{
mDiscoDone = true; //or it will happen twice, we don't
want that.
@ -470,6 +472,8 @
{
if(transport()) //no need to disco if this is a legacy contact
mDiscoDone = true;
+ else if(!rosterItem().jid().node().isEmpty())
+ mDiscoDone = true; //contact with an @ are not
transport for sure
else
{
//disco to see if it's not a transport
_______________________________________________
kopete-devel mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/kopete-devel