From a62a5e99578e34291a684d56b9336a7fa6a74765 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 28 Sep 2016 23:31:26 +0200 Subject: [PATCH] Changed: Increase timeout delay to 30s (just to avoid to wait forever) --- code/ryzom/tools/client/ryzom_installer/src/downloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/tools/client/ryzom_installer/src/downloader.cpp b/code/ryzom/tools/client/ryzom_installer/src/downloader.cpp index e7ef391cd..20a55d278 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/downloader.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/downloader.cpp @@ -91,7 +91,7 @@ void CDownloader::startTimer() { stopTimer(); - m_timer->setInterval(5000); + m_timer->setInterval(30000); m_timer->setSingleShot(true); m_timer->start(); }