fix sending of stopped events to the tracker

This commit is contained in:
zzz
2010-02-04 14:47:15 +00:00
parent 746c1bd628
commit 101135a99a
3 changed files with 5 additions and 2 deletions

View File

@ -315,7 +315,7 @@ public class TrackerClient extends I2PAppThread
// try to contact everybody we can // try to contact everybody we can
// Don't try to restart I2CP connection just to say goodbye // Don't try to restart I2CP connection just to say goodbye
for (Iterator iter = trackers.iterator(); iter.hasNext(); ) { for (Iterator iter = trackers.iterator(); iter.hasNext(); ) {
if (!verifyConnected()) return; if (!_util.connected()) return;
Tracker tr = (Tracker)iter.next(); Tracker tr = (Tracker)iter.next();
if (tr.started && (!tr.stop) && tr.trackerProblems == null) if (tr.started && (!tr.stop) && tr.trackerProblems == null)
doRequest(tr, infoHash, peerID, uploaded, doRequest(tr, infoHash, peerID, uploaded,

View File

@ -1,3 +1,6 @@
2010-02-04 zzz
* i2psnark: Fix sending stopped events to the tracker
2010-02-03 zzz 2010-02-03 zzz
* Console: * Console:
- Hide update buttons and update config if install dir is readonly or if configured - Hide update buttons and update config if install dir is readonly or if configured

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 = 7; public final static long BUILD = 8;
/** for example "-test" */ /** for example "-test" */
public final static String EXTRA = ""; public final static String EXTRA = "";