From 946378af6bed338f4b4eadd24a4c121946aa4377 Mon Sep 17 00:00:00 2001 From: parhelia512 <0011d3@gmail.com> Date: Wed, 20 Aug 2025 11:28:24 +0800 Subject: [PATCH] fix #702 --- src/global/HTTPRequestHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global/HTTPRequestHelper.cpp b/src/global/HTTPRequestHelper.cpp index 0493e52..1f7ff81 100644 --- a/src/global/HTTPRequestHelper.cpp +++ b/src/global/HTTPRequestHelper.cpp @@ -47,7 +47,7 @@ namespace Configs_network { // Wait for response auto abortTimer = new QTimer; abortTimer->setSingleShot(true); - abortTimer->setInterval(3000); + abortTimer->setInterval(10000); connect(abortTimer, &QTimer::timeout, _reply, &QNetworkReply::abort); abortTimer->start(); {