Add router version to profiles.jsp
This commit is contained in:
@ -18,6 +18,7 @@
|
||||
- Add participating tunnel acceptance status
|
||||
* Throttle: Reject tunnels for first 10m uptime
|
||||
* I2PTunnel: Change default outproxy to false.i2p
|
||||
* profiles.jsp: Add router version
|
||||
|
||||
* 2008-04-26 0.6.1.33 released
|
||||
|
||||
|
@ -126,8 +126,13 @@ class ProfileOrganizerRenderer {
|
||||
}
|
||||
if (isIntegrated) buf.append(", Integrated");
|
||||
RouterInfo info = _context.netDb().lookupRouterInfoLocally(peer);
|
||||
if (info != null)
|
||||
buf.append(" (" + info.getCapabilities() + ")");
|
||||
if (info != null) {
|
||||
buf.append(" (").append(info.getCapabilities());
|
||||
String v = info.getOption("router.version");
|
||||
if (v != null)
|
||||
buf.append(' ').append(v);
|
||||
buf.append(')');
|
||||
}
|
||||
|
||||
buf.append("<td align=\"right\">").append(num(prof.getSpeedValue()));
|
||||
//buf.append('/').append(num(prof.getOldSpeedValue()));
|
||||
|
Reference in New Issue
Block a user