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(":" + + out.write("" + "
"); + out.write(":\n"); + out.write("\n"); for (Tracker t : sortedTrackers) { String name = t.name; String announceURL = t.announceURL.replace("=", "="); @@ -1563,9 +1569,9 @@ public class I2PSnarkServlet extends DefaultServlet { out.write(announceURL); out.write("\" value=\"foo\">\n"); } - out.write("
"); out.write(_("Primary")); out.write(""); out.write(_("Alternates")); - out.write("
" + + " " + + "
"); + out.write("
"); out.write(_("none")); - out.write("
\n"); @@ -1575,10 +1581,7 @@ public class I2PSnarkServlet extends DefaultServlet { // "title=\""); //out.write(_("Specify custom tracker announce URL")); //out.write("\" > " + - out.write(" \n" + - "
\n" + ""); }