* i2psnark:

- Fix delete and remove buttons for Opera and w3m (thx xiake)
      - Stop torrent if no valid trackers
      - Fix war build dependencies
This commit is contained in:
zzz
2011-02-24 15:45:18 +00:00
parent fde783b156
commit bb7d0287d9
5 changed files with 20 additions and 8 deletions

View File

@@ -185,10 +185,12 @@ public class TrackerClient extends I2PAppThread
}
if (trackers.isEmpty()) {
// FIXME really need to get this message to the gui
stop = true;
_log.error("No valid trackers for infoHash: " + infoHash);
// FIXME translate
SnarkManager.instance().addMessage("No valid trackers for " + this.snark.getBaseName() + " - enable opentrackers?");
_log.error("No valid trackers for " + this.snark.getBaseName());
// FIXME keep going if DHT enabled
this.snark.stopTorrent();
return;
}