mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-05-17 13:20:25 -04:00
Added hops display to node info. Fixed node info display for unknown ops and addresses.
This commit is contained in:
parent
8b84864847
commit
4ff99688de
2 changed files with 21 additions and 3 deletions
|
@ -131,7 +131,7 @@ class Node:
|
|||
except Exception as e:
|
||||
RNS.log("Error while fetching list of allowed identities for request: "+str(e), RNS.LOG_ERROR)
|
||||
|
||||
if remote_identity.hash in allowed_list:
|
||||
if hasattr(remote_identity, "hash") and remote_identity.hash in allowed_list:
|
||||
request_allowed = True
|
||||
else:
|
||||
request_allowed = False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue