From 51eaa833018580df78a053690740bf2276c9860f Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 1 Oct 2025 21:02:54 -0500 Subject: [PATCH] Fix: Prevent writing None to I2PInterface config --- meshchat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshchat.py b/meshchat.py index a7a7b32..7aabb8a 100644 --- a/meshchat.py +++ b/meshchat.py @@ -508,7 +508,7 @@ class ReticulumMeshChat: # handle I2P interface if interface_type == "I2PInterface": interface_details['connectable'] = "True" - interface_details["peers"] = data.get('peers') + InterfaceEditor.update_value(interface_details, data, "peers") # handle tcp server interface if interface_type == "TCPServerInterface":