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; }