mirror of
https://github.com/meshtastic/python.git
synced 2025-12-31 11:57:57 -05:00
List unknown node IDs always with 8 hex digits, padded with 0s
This commit is contained in:
@@ -162,7 +162,7 @@ class MeshInterface:
|
||||
if not includeSelf and node["num"] == self.localNode.nodeNum:
|
||||
continue
|
||||
|
||||
row = {"N": 0, "User": f"UNK: {node['num']}", "ID": f"!{node['num']:x}"}
|
||||
row = {"N": 0, "User": f"UNK: {node['num']}", "ID": f"!{node['num']:08x}"}
|
||||
|
||||
user = node.get("user")
|
||||
if user:
|
||||
|
||||
Reference in New Issue
Block a user