forked from I2P_Developers/i2p.i2p
2007-12-29 zzz
* Allow commas in router.trustedUpdateKeys and router.updateURL again
This commit is contained in:
@ -184,7 +184,7 @@ public class UpdateHandler {
|
||||
|
||||
private String selectUpdateURL() {
|
||||
String URLs = _context.getProperty(ConfigUpdateHandler.PROP_UPDATE_URL, ConfigUpdateHandler.DEFAULT_UPDATE_URL);
|
||||
StringTokenizer tok = new StringTokenizer(URLs, "\r\n");
|
||||
StringTokenizer tok = new StringTokenizer(URLs, " ,\r\n");
|
||||
List URLList = new ArrayList();
|
||||
while (tok.hasMoreTokens())
|
||||
URLList.add(tok.nextToken().trim());
|
||||
|
Reference in New Issue
Block a user