SVN commit 815948 by uwolfer: Fix for Google Talk contacts: Google Talk does not provide the Jabber nickname property. If nickname property is empty, take fullname as nickname (which will be shown in the contact list). Reviewed and okay'ed by mattr. M +4 -0 jabberbasecontact.cpp --- trunk/KDE/kdenetwork/kopete/protocols/jabber/jabberbasecontact.cpp #815947:815948 @@ -424,6 +424,10 @@ { setProperty ( protocol()->propNickName, vCard.nickName () ); } + else if ( !vCard.fullName().isEmpty () ) // google talk contacts for example do not have a nickname; better show fullname instead of jabber id + { + setProperty ( protocol()->propNickName, vCard.fullName () ); + } else { removeProperty ( protocol()->propNickName );