- Custom tracker map AIOOBE fix, thx kytv

This commit is contained in:
zzz
2012-05-23 22:40:03 +00:00
parent 501f2f85d5
commit 4979f8dace
3 changed files with 3 additions and 2 deletions

View File

@ -1442,7 +1442,7 @@ public class SnarkManager implements Snark.CompleteListener {
String name = toks[i].trim().replace(",", ","); String name = toks[i].trim().replace(",", ",");
String url = toks[i+1].trim().replace(",", ","); String url = toks[i+1].trim().replace(",", ",");
if ( (name.length() > 0) && (url.length() > 0) ) { 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; String url2 = urls.length > 1 ? urls[1] : null;
_trackerMap.put(name, new Tracker(name, urls[0], url2)); _trackerMap.put(name, new Tracker(name, urls[0], url2));
} }

View File

@ -3,6 +3,7 @@
- Fixes when complete except for skipped files - Fixes when complete except for skipped files
(ticket #447) status in UI, don't connect outbound, (ticket #447) status in UI, don't connect outbound,
disconnect seeds when done disconnect seeds when done
- Custom tracker map AIOOBE fix
- More classes pkg private - More classes pkg private
* jobs.jsp: Add more queue diagnostics * jobs.jsp: Add more queue diagnostics

View File

@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */ /** deprecated */
public final static String ID = "Monotone"; public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION; public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 5; public final static long BUILD = 6;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";