From 682fb4bfdcd1ca97ea775ab9da75f78b32b07fd9 Mon Sep 17 00:00:00 2001 From: johni0702 Date: Fri, 11 Nov 2016 18:03:09 +0100 Subject: [PATCH] Download OpenEye via http because of outdated java versions The Java version shipped with the default Minecraft launcher for Windows and OSX, is quite old and does not contain the necessary root certificates for properly accepting LetsEncrypt's certificates. This can be reversed once the Minecraft launcher ships at least 1.8.0_101. --- src/main/java/com/replaymod/extras/OpenEyeExtra.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/replaymod/extras/OpenEyeExtra.java b/src/main/java/com/replaymod/extras/OpenEyeExtra.java index 600db9ad..e198a826 100644 --- a/src/main/java/com/replaymod/extras/OpenEyeExtra.java +++ b/src/main/java/com/replaymod/extras/OpenEyeExtra.java @@ -25,7 +25,7 @@ import java.nio.channels.FileChannel; import java.nio.channels.ReadableByteChannel; public class OpenEyeExtra implements Extra { - private static final String DOWNLOAD_URL = "https://www.replaymod.com/dl/openeye/" + Loader.MC_VERSION; + private static final String DOWNLOAD_URL = "http://www.replaymod.com/dl/openeye/" + Loader.MC_VERSION; private static final Setting ASK_FOR_OPEN_EYE = new Setting<>("advanced", "askForOpenEye", null, true); private ReplayMod mod;