1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-25 18:30:20 +01:00

Make twitter sync every 2.5 minutes

This commit is contained in:
Jeff Mitchell 2011-06-14 13:48:29 -04:00
parent 6f1d4a465e
commit 019499632a

View File

@ -67,11 +67,11 @@ TwitterPlugin::TwitterPlugin( const QString& pluginId )
, m_state( Disconnected )
{
qDebug() << Q_FUNC_INFO;
m_checkTimer.setInterval( 60000 );
m_checkTimer.setInterval( 150000 );
m_checkTimer.setSingleShot( false );
connect( &m_checkTimer, SIGNAL( timeout() ), SLOT( checkTimerFired() ) );
m_connectTimer.setInterval( 60000 );
m_connectTimer.setInterval( 150000 );
m_connectTimer.setSingleShot( false );
connect( &m_connectTimer, SIGNAL( timeout() ), SLOT( connectTimerFired() ) );