From c6dbc278da14d842061c527119597efcc9db339c Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 10 May 2025 17:50:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=B8=8B=E8=BD=BD=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/src/main/java/com/xypower/common/FileDownloader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/com/xypower/common/FileDownloader.java b/common/src/main/java/com/xypower/common/FileDownloader.java index ccd6ba18..fe5fdc58 100644 --- a/common/src/main/java/com/xypower/common/FileDownloader.java +++ b/common/src/main/java/com/xypower/common/FileDownloader.java @@ -34,7 +34,7 @@ public class FileDownloader { connection = (HttpURLConnection) url.openConnection(); connection.setRequestProperty("Accept-Encoding", "gzip"); connection.setConnectTimeout(10000); - connection.setReadTimeout(600000); + connection.setReadTimeout(1800000); connection.setDoInput(true); connection.connect(); final File temp = new File(filePath);