diff --git a/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java b/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java index cea2a11b2fe851eeddf310d5b96a8e3434d72528..cc8e01bc057b27b41296999d2e5f4fccc232bb6d 100644 --- a/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java +++ b/apps/routerconsole/java/src/net/i2p/router/web/ConfigUpdateHandler.java @@ -42,11 +42,15 @@ public class ConfigUpdateHandler extends FormHandler { public static final String PROP_ZIP_URL = "router.updateUnsignedURL"; public static final String PROP_UPDATE_URL = "router.updateURL"; + /** + * Changed as of release 0.7.14 from .sud to .su2 + * Update hosts must maintain both for several releases + */ public static final String DEFAULT_UPDATE_URL = - "http://echelon.i2p/i2p/i2pupdate.sud\r\n" + - "http://stats.i2p/i2p/i2pupdate.sud\r\n" + - "http://www.i2p2.i2p/_static/i2pupdate.sud\r\n" + - "http://update.postman.i2p/i2pupdate.sud" ; + "http://echelon.i2p/i2p/i2pupdate.su2\r\n" + + "http://stats.i2p/i2p/i2pupdate.su2\r\n" + + "http://www.i2p2.i2p/_static/i2pupdate.su2\r\n" + + "http://update.postman.i2p/i2pupdate.su2" ; public static final String PROP_TRUSTED_KEYS = "router.trustedUpdateKeys";