From d3ed3556eb47de9e502127005612fb2d80f5803c Mon Sep 17 00:00:00 2001 From: duffyduck Date: Fri, 10 Apr 2026 23:13:29 +0200 Subject: [PATCH] fix: Bridge chat handler was missing send_to_core (text messages ignored) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The chat handler checked sender but never forwarded the text to aria-core. Only voice messages worked because they went through the audio→STT→send_to_core path. Co-Authored-By: Claude Opus 4.6 (1M context) --- bridge/aria_bridge.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bridge/aria_bridge.py b/bridge/aria_bridge.py index 3e1331e..1509c2e 100644 --- a/bridge/aria_bridge.py +++ b/bridge/aria_bridge.py @@ -1045,6 +1045,11 @@ class ARIABridge: sender = payload.get("sender", "") if sender in ("aria", "stt"): return + text = payload.get("text", "") + if text: + logger.info("[rvs] App-Chat: '%s'", text[:80]) + await self.send_to_core(text, source="app") + return elif msg_type == "xtts_response": # XTTS-Audio vom Gaming-PC empfangen → an App weiterleiten