dont export json dict

This commit is contained in:
liamcottle
2025-02-03 01:20:53 +13:00
parent 4d816ae87c
commit 4f497620c8

View File

@@ -795,7 +795,8 @@ class ReticulumMeshChat:
# add interface to output
output.append(f"[[{interface_name}]]")
for key, value in interface.items():
output.append(f" {key} = {value}")
if not isinstance(value, dict):
output.append(f" {key} = {value}")
output.append("")
# Handle sub-interfaces for RNodeMultiInterface