From 15cbddb5b04f9b02a8118ccc4cec4141edd7c79b Mon Sep 17 00:00:00 2001 From: idk Date: Mon, 19 Sep 2022 23:53:38 -0400 Subject: [PATCH] fix the router.config file for the user if they installed un-bundled after bundled. closes #23 --- java/net/i2p/router/WinLauncher.java | 1 + 1 file changed, 1 insertion(+) diff --git a/java/net/i2p/router/WinLauncher.java b/java/net/i2p/router/WinLauncher.java index 55519ad..e08c9e4 100644 --- a/java/net/i2p/router/WinLauncher.java +++ b/java/net/i2p/router/WinLauncher.java @@ -156,6 +156,7 @@ public class WinLauncher extends CopyConfigDir { // If the user installed the Easy bundle before installing the // regulalr bundle, then they have a config file which contains the // wrong update URL. Check for it, and change it back if necessary. + // closes #23 i2pRouter = new Router(routerConfig(), System.getProperties()); if (isInstalled("i2p") || checkProgramFilesInstall()) { String newsURL = i2pRouter.getConfig("router.newsURL");