2007-12-29 zzz

* Allow commas in router.trustedUpdateKeys and router.updateURL again
This commit is contained in:
zzz
2007-12-29 23:59:24 +00:00
committed by zzz
parent d6fb979616
commit 7c8f519b35
4 changed files with 6 additions and 5 deletions

View File

@ -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());