From fc2289708d604debfd6f2ecba3147b0f07cae02a Mon Sep 17 00:00:00 2001 From: Zaxar163 <35835496+Zaxar163@users.noreply.github.com> Date: Wed, 26 Sep 2018 17:56:26 +0300 Subject: [PATCH] Remove program stop. --- .../src/main/java/ru/gravit/utils/downloader/Downloader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libLauncher/src/main/java/ru/gravit/utils/downloader/Downloader.java b/libLauncher/src/main/java/ru/gravit/utils/downloader/Downloader.java index dca5f448..83edb2ec 100644 --- a/libLauncher/src/main/java/ru/gravit/utils/downloader/Downloader.java +++ b/libLauncher/src/main/java/ru/gravit/utils/downloader/Downloader.java @@ -42,7 +42,7 @@ public File getFile() { } public void downloadFile() throws IOException { - if (!url.getProtocol().equalsIgnoreCase("http")) throw new IOException("Invalid protocol."); + if (!(url.getProtocol().equalsIgnoreCase("http") || url.getProtocol().equalsIgnoreCase("https"))) throw new IOException("Invalid protocol."); HttpURLConnection connect = (HttpURLConnection) (url).openConnection(); connect.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.95 Safari/537.11"); // for stupid servers connect.setInstanceFollowRedirects(true); @@ -80,4 +80,4 @@ public void run() { LogHelper.error(ex); } } -} \ No newline at end of file +}