also fix backupNewsURL in the case of conflicting bundled and un-bundled intalls

This commit is contained in:
idk
2022-09-20 00:09:17 -04:00
parent c5b2f958c2
commit a267bb7d65
2 changed files with 4 additions and 1 deletions

View File

@ -176,7 +176,7 @@ public class WinLauncher extends CopyConfigDir {
logger.info(
"checked router.backupNewsURL config, containes win/beta in a service install, invalid update type");
if (i2pRouter.saveConfig("router.backupNewsURL",
ServiceUpdaterString())) {
ServiceBackupUpdaterString())) {
logger.info("updated routerconsole.browser config " +
appImageExe());
}

View File

@ -155,6 +155,9 @@ public class WindowsServiceUtil {
public static String ServiceUpdaterString() {
return "http://tc73n4kivdroccekirco7rhgxdg5f3cjvbaapabupeyzrqwv5guq.b32.i2p/news.su3";
}
public static String ServiceBackupUpdaterString() {
return "http://dn3tvalnjz432qkqsvpfdqrwpqkw3ye4n4i2uyfr4jexvo3sp5ka.b32.i2p/news.su3";
}
public static String ServiceStaticUpdaterString() {
return "http://echelon.i2p/i2p/i2pupdate.sud,http://stats.i2p/i2p/i2pupdate.sud";
}