From ff850c49aacb09173eaf0300669d87e53d3203a1 Mon Sep 17 00:00:00 2001 From: Daniel McKnight Date: Thu, 26 Oct 2023 11:40:25 -0700 Subject: [PATCH] Fix missing return in `_validate_message_context` --- neon_speech/service.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neon_speech/service.py b/neon_speech/service.py index 0474810..7229009 100644 --- a/neon_speech/service.py +++ b/neon_speech/service.py @@ -138,6 +138,8 @@ def _validate_message_context(self, message: Message, native_sources=None): log_deprecation(f"Adding audio to destination context for " f"{message.msg_type}", "5.0.0") message.context['destination'].append('audio') + return OVOSDinkumVoiceService._validate_message_context(self, message, + native_sources) def run(self): if self.config.get('listener', {}).get('enable_voice_loop', True):