forked from I2P_Developers/i2p.i2p
Console: Add tunnel nicknames to router debug page
Escape tunnel nicknames on LS debug page
This commit is contained in:
@@ -519,7 +519,7 @@ class NetDbRenderer {
|
||||
buf.append("<b>").append(_t("Destination")).append(":</b> ");
|
||||
TunnelPoolSettings in = _context.tunnelManager().getInboundSettings(key);
|
||||
if (in != null && in.getDestinationNickname() != null)
|
||||
buf.append(in.getDestinationNickname());
|
||||
buf.append(DataHelper.escapeHTML(in.getDestinationNickname()));
|
||||
else
|
||||
buf.append(dest.toBase64().substring(0, 6));
|
||||
buf.append("</th></tr>\n");
|
||||
|
||||
Reference in New Issue
Block a user