forked from I2P_Developers/i2p.i2p
- Show yellow star if no outbound tunnels
This commit is contained in:
@ -390,7 +390,7 @@ public class SummaryHelper extends HelperBase {
|
||||
buf.append(name.substring(0,15)).append("…");
|
||||
buf.append("</a></b></td>\n");
|
||||
LeaseSet ls = _context.netDb().lookupLeaseSetLocally(h);
|
||||
if (ls != null) {
|
||||
if (ls != null && _context.tunnelManager().getOutboundClientTunnelCount(h) > 0) {
|
||||
long timeToExpire = ls.getEarliestLeaseDate() - _context.clock().now();
|
||||
if (timeToExpire < 0) {
|
||||
// red or yellow light
|
||||
|
Reference in New Issue
Block a user