From cf7c524a9d9247b0d0da5d615a26edc8fd75cac5 Mon Sep 17 00:00:00 2001 From: dima_dencep Date: Sat, 24 Sep 2022 01:31:49 +0700 Subject: [PATCH] Update IOHelper.java --- .../src/main/java/pro/gravit/utils/helper/IOHelper.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LauncherCore/src/main/java/pro/gravit/utils/helper/IOHelper.java b/LauncherCore/src/main/java/pro/gravit/utils/helper/IOHelper.java index 308e1d37..6cefce85 100644 --- a/LauncherCore/src/main/java/pro/gravit/utils/helper/IOHelper.java +++ b/LauncherCore/src/main/java/pro/gravit/utils/helper/IOHelper.java @@ -223,6 +223,7 @@ public static URLConnection newConnection(URL url) throws IOException { connection.setReadTimeout(HTTP_TIMEOUT); connection.setConnectTimeout(HTTP_TIMEOUT); connection.addRequestProperty("User-Agent", USER_AGENT); // Fix for stupid servers + connection.setConnectTimeout(10000); } else connection.setUseCaches(false); connection.setDoInput(true); @@ -235,6 +236,7 @@ public static HttpURLConnection newConnectionPost(URL url) throws IOException { connection.setDoOutput(true); connection.setRequestMethod("POST"); connection.addRequestProperty("User-Agent", IOHelper.USER_AGENT); + connection.setConnectTimeout(10000); return connection; }