From 4f22cb13086e0c1e1b0f2545d29f0b7c0ca71694 Mon Sep 17 00:00:00 2001 From: Lloyd Date: Fri, 9 Jan 2026 17:24:10 +0000 Subject: [PATCH] Convert public key to uppercase when retrieving from local identity --- repeater/data_acquisition/letsmesh_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repeater/data_acquisition/letsmesh_handler.py b/repeater/data_acquisition/letsmesh_handler.py index cf48fc2..bcb2dd7 100644 --- a/repeater/data_acquisition/letsmesh_handler.py +++ b/repeater/data_acquisition/letsmesh_handler.py @@ -204,7 +204,7 @@ class MeshCoreToMqttJwtPusher: ): # Store local identity and get public key self.local_identity = local_identity - public_key = local_identity.get_public_key().hex() + public_key = local_identity.get_public_key().hex().upper() # Extract values from config from ..config import get_node_info