Version: 9.2 (using KDE KDE 3.3.0) Installed from: Compiled From Sources Compiler: gcc 3.4.2 OS: Linux When the MSN protocol is used, and a timeout other than the default 90 seconds is used for away messages, the preference has no effect. This should be because that line 254 in kopete/protocols/msn/msnmessagemanager.cpp has a spelling error; "AwayMessagesSeconds" should be "AwayMessageSeconds"
CVS commit by ogoffart: Fix Bug 104040: Preference for timeout between AutoMessages for MSN protocol has no effect thanks for the bug report. BUG: 104040 M +1 -1 msnmessagemanager.cpp 1.123 --- kdenetwork/kopete/protocols/msn/msnmessagemanager.cpp #1.122:1.123 @@ -271,5 +271,5 @@ void MSNChatSession::slotMessageReceived if ( config->readBoolEntry( "SendAwayMessages", false ) && ( !m_awayMessageTime.isValid() || - m_awayMessageTime.elapsed() > 1000 * config->readNumEntry( "AwayMessagesSeconds", 90 ) ) ) + m_awayMessageTime.elapsed() > 1000 * config->readNumEntry( "AwayMessageSeconds", 90 ) ) ) { // Don't translate "Auto-Message:" This string is caught by MSN Plus! (and also by kopete now)
You need to log in before you can comment on or make changes to this bug.