From 73a203cb15f92e6534a2c865bba040625d5269d7 Mon Sep 17 00:00:00 2001 From: Nicola Bonzanni Date: Mon, 30 Mar 2026 00:27:19 +0200 Subject: [PATCH] Add message channel header for voice requests A header was missing for properly recognition of the message channel as voice. --- custom_components/openclaw/conversation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/custom_components/openclaw/conversation.py b/custom_components/openclaw/conversation.py index 6baa134..4210c3b 100644 --- a/custom_components/openclaw/conversation.py +++ b/custom_components/openclaw/conversation.py @@ -43,6 +43,7 @@ _VOICE_REQUEST_HEADERS = { "x-openclaw-source": "voice", "x-ha-voice": "true", + "x-openclaw-message-channel": "voice", }