mirror of
https://github.com/markqvist/Reticulum.git
synced 2026-08-27 20:29:12 +00:00
Fixed rnstatus including not-yet-blocked IPs in blocked IP list output
This commit is contained in:
parent
1bad7f5807
commit
bfab2964b6
1 changed files with 1 additions and 1 deletions
|
|
@ -564,7 +564,7 @@ class BackboneInterface(Interface):
|
|||
@property
|
||||
def blocked_ip_list(self):
|
||||
if not self.block_fast_flapping: return []
|
||||
else: return list(self.fast_flapping.keys())
|
||||
else: return [ip for ip in self.fast_flapping if self.fast_flapping[ip][2] > self.fast_flap_grace]
|
||||
|
||||
@property
|
||||
def blocked_ip_count(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue