bugfix - http to https redirect is not supported
This commit is contained in:
parent
da4c7e1a2a
commit
973a7deb36
|
@ -44,7 +44,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
|||
* @see EngineSnifferPanel
|
||||
*/
|
||||
public class Launcher {
|
||||
public static final int CONSOLE_VERSION = 20200508;
|
||||
public static final int CONSOLE_VERSION = 20200514;
|
||||
public static final String INI_FILE_PATH = System.getProperty("ini_file_path", "..");
|
||||
public static final String INPUT_FILES_PATH = System.getProperty("input_files_path", "..");
|
||||
public static final String TOOLS_PATH = System.getProperty("tools_path", ".");
|
||||
|
|
|
@ -25,7 +25,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
|||
public class VersionChecker {
|
||||
private static final String JAVA_CONSOLE_TAG = "java_console";
|
||||
private static final String FIRMWARE_TAG = "firmware";
|
||||
private static final String VERSIONS_URL = "http://rusefi.com/console/versions.txt";
|
||||
private static final String VERSIONS_URL = "https://rusefi.com/console/versions.txt";
|
||||
|
||||
private static final VersionChecker instance = new VersionChecker();
|
||||
|
||||
|
@ -42,7 +42,7 @@ public class VersionChecker {
|
|||
try {
|
||||
instance.readAndProcess();
|
||||
} catch (IOException e) {
|
||||
FileLog.MAIN.logLine("Failed to read from " + VERSIONS_URL);
|
||||
FileLog.MAIN.logLine("Failed to read from " + VERSIONS_URL + e);
|
||||
}
|
||||
}
|
||||
}, "version checker");
|
||||
|
|
Loading…
Reference in New Issue