CVS commit by ogoffart: Make sure the status of myslef is not changed when we have it in the contactlist. This will make possible to go invisible when myself is in the contactlist M +2 -2 msnnotifysocket.cpp 1.164 --- kdenetwork/kopete/protocols/msn/msnnotifysocket.cpp #1.163:1.164 @@ -325,5 +325,5 @@ void MSNNotifySocket::parseCommand( cons // status handle publicName strangeNumber MSNOBJECT MSNContact *c = static_cast( m_account->contacts()[ data.section( ' ', 1, 1 ) ] ); - if( c ) + if( c && c->contactId() != m_account->accountId() ) { QString publicName=unescape( data.section( ' ', 2, 2 ) ); @@ -351,5 +351,5 @@ void MSNNotifySocket::parseCommand( cons { MSNContact *c = static_cast( m_account->contacts()[ data.section( ' ', 0, 0 ) ] ); - if( c ) + if( c && c->contactId() != m_account->accountId() ) { c->setOnlineStatus( MSNProtocol::protocol()->FLN );