From 218394015ba98d2a01836417e5a2704cead39a7f Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Fri, 5 Jul 2013 14:50:54 +0200 Subject: [PATCH] Increase general ScriptCommand timeout to 20s --- src/libtomahawk/resolvers/ScriptCommandQueue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/resolvers/ScriptCommandQueue.cpp b/src/libtomahawk/resolvers/ScriptCommandQueue.cpp index 2663c87e8..a0e17e87d 100644 --- a/src/libtomahawk/resolvers/ScriptCommandQueue.cpp +++ b/src/libtomahawk/resolvers/ScriptCommandQueue.cpp @@ -54,7 +54,7 @@ ScriptCommandQueue::nextCommand() connect( m_timer, SIGNAL( timeout() ), this, SLOT( onTimeout() ) ); - m_timer->start( 10000 ); + m_timer->start( 20000 ); req->exec(); }