forked from I2P_Developers/i2p.i2p
- Custom tracker map AIOOBE fix, thx kytv
This commit is contained in:
@ -1442,7 +1442,7 @@ public class SnarkManager implements Snark.CompleteListener {
|
||||
String name = toks[i].trim().replace(",", ",");
|
||||
String url = toks[i+1].trim().replace(",", ",");
|
||||
if ( (name.length() > 0) && (url.length() > 0) ) {
|
||||
String urls[] = DEFAULT_TRACKERS[i+1].split("=", 2);
|
||||
String urls[] = url.split("=", 2);
|
||||
String url2 = urls.length > 1 ? urls[1] : null;
|
||||
_trackerMap.put(name, new Tracker(name, urls[0], url2));
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
- Fixes when complete except for skipped files
|
||||
(ticket #447) status in UI, don't connect outbound,
|
||||
disconnect seeds when done
|
||||
- Custom tracker map AIOOBE fix
|
||||
- More classes pkg private
|
||||
* jobs.jsp: Add more queue diagnostics
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 5;
|
||||
public final static long BUILD = 6;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user