mirror of
https://github.com/meshtastic/python.git
synced 2025-12-31 20:08:02 -05:00
Fix: showNodes crash #439
This commit is contained in:
committed by
Thomas Göttgens
parent
1a97dc6982
commit
06b87b376c
@@ -160,8 +160,8 @@ class MeshInterface:
|
||||
if user:
|
||||
row.update(
|
||||
{
|
||||
"User": user["longName"],
|
||||
"AKA": user["shortName"],
|
||||
"User": user.get("longName", "N/A"),
|
||||
"AKA": user.get("shortName", "N/A"),
|
||||
"ID": user["id"],
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user