fix sending of stopped events to the tracker
This commit is contained in:
@ -315,7 +315,7 @@ public class TrackerClient extends I2PAppThread
|
||||
// try to contact everybody we can
|
||||
// Don't try to restart I2CP connection just to say goodbye
|
||||
for (Iterator iter = trackers.iterator(); iter.hasNext(); ) {
|
||||
if (!verifyConnected()) return;
|
||||
if (!_util.connected()) return;
|
||||
Tracker tr = (Tracker)iter.next();
|
||||
if (tr.started && (!tr.stop) && tr.trackerProblems == null)
|
||||
doRequest(tr, infoHash, peerID, uploaded,
|
||||
|
@ -1,3 +1,6 @@
|
||||
2010-02-04 zzz
|
||||
* i2psnark: Fix sending stopped events to the tracker
|
||||
|
||||
2010-02-03 zzz
|
||||
* Console:
|
||||
- Hide update buttons and update config if install dir is readonly or if configured
|
||||
|
@ -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 = 7;
|
||||
public final static long BUILD = 8;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user