I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Unverified Commit 53eb6ba7 authored by zzz's avatar zzz
Browse files

Console: Fix Sybil closest hash tabs

parent eaa52658
No related branches found
No related tags found
No related merge requests found
...@@ -759,8 +759,9 @@ public class SybilRenderer { ...@@ -759,8 +759,9 @@ public class SybilRenderer {
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
RouterInfo ri = ris.get(i); RouterInfo ri = ris.get(i);
double dist = renderRouterInfo(buf, ri, us, false, false); double dist = renderRouterInfo(buf, ri, us, false, false);
if (dist < MIN_CLOSE) // just show all 10 so we get the total stats right
break; //if (dist > MIN_CLOSE)
// break;
if (dist < avgMinDist) { if (dist < avgMinDist) {
if (i == 0) { if (i == 0) {
//buf.append("<p><b>Not to worry, but above router is closer than average minimum distance " + fmt.format(avgMinDist) + "</b></p>"); //buf.append("<p><b>Not to worry, but above router is closer than average minimum distance " + fmt.format(avgMinDist) + "</b></p>");
...@@ -825,7 +826,7 @@ public class SybilRenderer { ...@@ -825,7 +826,7 @@ public class SybilRenderer {
buf.append("<th colspan=\"2\"><a name=\"our-info\" ></a><b>" + _t("Our info") + ":</b> <code>").append(hash) buf.append("<th colspan=\"2\"><a name=\"our-info\" ></a><b>" + _t("Our info") + ":</b> <code>").append(hash)
.append("</code></th></tr>\n<tr><td class=\"sybilinfo_params\" colspan=\"2\"><div class=\"sybilinfo_container\">"); .append("</code></th></tr>\n<tr><td class=\"sybilinfo_params\" colspan=\"2\"><div class=\"sybilinfo_container\">");
} else { } else {
buf.append("<th><b>" + _t("Router") + ":</b> <a href=\"netdb?r=").append(hash, 0, 6).append("\"><code>").append(hash).append("</code></a>\n"); buf.append("<th><b>" + _t("Router") + ":</b> <a href=\"netdb?r=").append(hash).append("\"><code>").append(hash).append("</code></a>\n");
String country = _context.commSystem().getCountry(info.getIdentity().getHash()); String country = _context.commSystem().getCountry(info.getIdentity().getHash());
buf.append("</th><th>"); buf.append("</th><th>");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment