| Summary: | kopete doing strange things with MSN contacts... | ||
|---|---|---|---|
| Product: | [Unmaintained] kopete | Reporter: | aragorn |
| Component: | MSN Plugin | Assignee: | Kopete Developers <kopete-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
aragorn
2003-05-03 05:37:43 UTC
This problem may happen because you have deleted the contactlist.xml The contactlist is not automaticaly retreived from server to to retreive the contactlist from server, two solution: 1) in the msn's debug menu: send raw command: command: SYN and paramettre 0 2) edit accounts.xml and remove the contactlist's serial (set it to 0) if that still not work there is a problem... Subject: kdenonbeta/kopete/protocols/msn CVS commit by ogoffart: Force to reload the contactlist from server if the contactlist.xml file has been deleted CCMAIL: 58048-done@bugs.kde.org M +8 -0 msnaccount.cpp 1.27 --- kdenonbeta/kopete/protocols/msn/msnaccount.cpp #1.26:1.27 @@ -107,4 +107,12 @@ void MSNAccount::connect() m_badpassword=false; + if(contacts().count() <= 1) + { + //Maybe the contactlist.xml has been removed, and the serial number not updated + // (the 1 is for the myself contact) + setPluginData(protocol() , "serial" , "0" ); + } + + m_notifySocket = new MSNNotifySocket( this, accountId() ); |