From 59091664db6f2479724e8fb1fe58016d260a337a Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Thu, 28 Mar 2024 09:37:06 -0700 Subject: [PATCH] Check against proper full name for moved protobufs --- meshtastic/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshtastic/node.py b/meshtastic/node.py index 9df4b50..473f489 100644 --- a/meshtastic/node.py +++ b/meshtastic/node.py @@ -123,7 +123,7 @@ class Node: print("Requesting current config from remote node (this can take a while).") msgIndex = configType.index - if configType.containing_type.full_name == "LocalConfig": + if configType.containing_type.full_name in ("meshtastic.LocalConfig", "LocalConfig"): p = admin_pb2.AdminMessage() p.get_config_request = msgIndex self._sendAdmin(p, wantResponse=True, onResponse=onResponse)