From e305bb4464437e6a77edb4515f3f07d9206b38bb Mon Sep 17 00:00:00 2001 From: pdxlocations Date: Sun, 6 Apr 2025 21:44:04 -0700 Subject: [PATCH] use localhost not meshtastic.local --- contact/utilities/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contact/utilities/interfaces.py b/contact/utilities/interfaces.py index 6cb0918..d568de6 100644 --- a/contact/utilities/interfaces.py +++ b/contact/utilities/interfaces.py @@ -16,7 +16,7 @@ def initialize_interface(args): except Exception as ex: logging.error(f"Unexpected error initializing interface: {ex}") if globals.interface.devPath is None: - return meshtastic.tcp_interface.TCPInterface("meshtastic.local") + return meshtastic.tcp_interface.TCPInterface("localhost") except Exception as ex: logging.critical(f"Fatal error initializing interface: {ex}")