more hellips
This commit is contained in:
@ -71,7 +71,7 @@ public class PersistentKeyRing extends KeyRing {
|
||||
for (Entry<Hash, SessionKey> e : entrySet()) {
|
||||
buf.append("\n<tr><td>");
|
||||
Hash h = e.getKey();
|
||||
buf.append(h.toBase64().substring(0, 6)).append("...");
|
||||
buf.append(h.toBase64().substring(0, 6)).append("…");
|
||||
buf.append("<td>");
|
||||
LeaseSet ls = _ctx.netDb().lookupLeaseSetLocally(h);
|
||||
if (ls != null) {
|
||||
@ -81,13 +81,13 @@ public class PersistentKeyRing extends KeyRing {
|
||||
if (in != null && in.getDestinationNickname() != null)
|
||||
buf.append(in.getDestinationNickname());
|
||||
else
|
||||
buf.append(dest.toBase64().substring(0, 6)).append("...");
|
||||
buf.append(dest.toBase64().substring(0, 6)).append("…");
|
||||
} else {
|
||||
String host = _ctx.namingService().reverseLookup(dest);
|
||||
if (host != null)
|
||||
buf.append(host);
|
||||
else
|
||||
buf.append(dest.toBase64().substring(0, 6)).append("...");
|
||||
buf.append(dest.toBase64().substring(0, 6)).append("…");
|
||||
}
|
||||
}
|
||||
buf.append("<td>");
|
||||
|
Reference in New Issue
Block a user