From 9af4edf07abefd4fe77f2232f82f49246a20ec70 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) --HG-- branch : develop --- 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(); }