mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-05-11 12:34:49 +00:00
Router: Ban hash of all-zero RI
seen live on the net
This commit is contained in:
@@ -57,7 +57,7 @@ class BanlistRenderer {
|
||||
buf.append("<li>").append(_context.commSystem().renderPeerHTML(key));
|
||||
buf.append(' ');
|
||||
String expireString = DataHelper.formatDuration2(expires);
|
||||
if (key.equals(Hash.FAKE_HASH))
|
||||
if (key.equals(Hash.FAKE_HASH) || key.equals(Banlist.HASH_ZERORI))
|
||||
buf.append(_t("Permanently banned"));
|
||||
else if (expires < 5l*24*60*60*1000)
|
||||
buf.append(_t("Temporary ban expiring in {0}", expireString));
|
||||
|
||||
Reference in New Issue
Block a user