forked from I2P_Developers/i2p.i2p
I2CP Multisession - Work in progress:
Stub out hardcoded list of DSA-only destinations Tweak client name length in summary bar Force initial leaseset request for subsession Send SessionStatus msg before LS request for subsession
This commit is contained in:
@ -435,10 +435,10 @@ public class SummaryHelper extends HelperBase {
|
||||
buf.append("client.png\" alt=\"Client\" title=\"").append(_("Client")).append("\">");
|
||||
buf.append("</td><td align=\"left\"><b><a href=\"tunnels#").append(h.toBase64().substring(0,4));
|
||||
buf.append("\" target=\"_top\" title=\"").append(_("Show tunnels")).append("\">");
|
||||
if (name.length() < 18)
|
||||
if (name.length() <= 20)
|
||||
buf.append(DataHelper.escapeHTML(name));
|
||||
else
|
||||
buf.append(DataHelper.escapeHTML(name.substring(0,15))).append("…");
|
||||
buf.append(DataHelper.escapeHTML(name.substring(0,18))).append("…");
|
||||
buf.append("</a></b></td>\n");
|
||||
LeaseSet ls = _context.netDb().lookupLeaseSetLocally(h);
|
||||
if (ls != null && _context.tunnelManager().getOutboundClientTunnelCount(h) > 0) {
|
||||
|
Reference in New Issue
Block a user