Fix: showNodes crash #439

This commit is contained in:
Manuel Verch
2023-04-06 09:31:00 +02:00
committed by Thomas Göttgens
parent 1a97dc6982
commit 06b87b376c

View File

@@ -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"],
}
)