diff --git a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
index 2765d5873..1aa831d5b 100644
--- a/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
+++ b/apps/i2psnark/java/src/org/klomp/snark/web/I2PSnarkServlet.java
@@ -1032,6 +1032,8 @@ public class I2PSnarkServlet extends DefaultServlet {
statusString = "
" +
"
" + _("Allocating");
} else if (err != null && curPeers == 0) {
+ // Also don't show if seeding... but then we won't see the not-registered error
+ // && remaining != 0 && needed != 0) {
// let's only show this if we have no peers, otherwise PEX and DHT should bail us out, user doesn't care
//if (isRunning && curPeers > 0 && !showPeers)
// statusString = " | " +
@@ -1544,11 +1546,15 @@ public class I2PSnarkServlet extends DefaultServlet {
out.write(_("File or directory to seed (must be within the specified path)"));
out.write("\" >\n");
out.write(_("Trackers"));
- out.write(": | \n" +
"");
}
|