1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-01-17 14:28:24 +01:00

Fix TWK-1617

This commit is contained in:
Uwe L. Korn 2014-06-27 02:08:21 +01:00
parent 2c9fefebeb
commit 318e50414d

View File

@ -230,7 +230,7 @@ HatchetSipPlugin::webSocketDisconnected()
// Work on the assumption that we were disconnected because Dreamcatcher shut down
// Reconnect after a time; use reasonable backoff + random
int interval = m_reconnectTimer.interval() <= 25000 ? m_reconnectTimer.interval() + 5000 : 30000;
interval += QCA::Random::randomInt() % 30;
interval += qrand() % 30;
m_reconnectTimer.setInterval( interval );
m_reconnectTimer.start();
}