From 87df4b4aa1833d6539c73927e83cfca94a5cc023 Mon Sep 17 00:00:00 2001 From: Gnome Adrift <646322+gnomeadrift@users.noreply.github.com> Date: Mon, 30 Mar 2026 11:38:05 -0700 Subject: [PATCH] Fix for telemetry polling --- app/radio_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/radio_sync.py b/app/radio_sync.py index eaa3e8d..38fb893 100644 --- a/app/radio_sync.py +++ b/app/radio_sync.py @@ -877,7 +877,7 @@ async def _repeater_telemetry_loop(): blocking=False, suspend_auto_fetch=True, ) as mc: - contact = await ContactRepository.get_by_public_key(key) + contact = await ContactRepository.get_by_key(key) if contact is None: logger.debug("Telemetry poll: contact %s not found, skipping", key[:12]) continue