From ee9ce0e14013fe64f958886cb0b8649dfff253f3 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Mon, 29 Dec 2025 19:02:51 -0500 Subject: [PATCH] Add the radio ID to the metadata payload to track who is talking, not just what system --- app/node_main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/node_main.py b/app/node_main.py index 592f107..f9e2d95 100644 --- a/app/node_main.py +++ b/app/node_main.py @@ -232,6 +232,7 @@ async def mqtt_lifecycle_manager(): current_tgid = int(t) current_meta = { "tgid": str(t), + "rid": str(ch.get("srcaddr", "")).strip(), "alpha_tag": str(ch.get("tag", "")).strip(), "frequency": str(ch.get("freq", 0)), "sysname": str(ch.get("system", "")).strip()