feat(forwarding): announce forwarding aliases in ReticulumMeshChat if forwarding manager is present

This commit is contained in:
2026-01-01 17:35:40 -06:00
parent ef9f8adeb3
commit 14f4eb3ee8

View File

@@ -675,6 +675,10 @@ class ReticulumMeshChat:
if should_announce:
await self.announce()
# also announce forwarding aliases if any
if self.forwarding_manager:
await asyncio.to_thread(self.forwarding_manager.announce_aliases)
# wait 1 second before next loop
await asyncio.sleep(1)