Merge pull request #3516 from okue/minorpatch1

refactor(user_mute): remove unnecessary _bot_speaking assignment in _handle_bot_stopped_speaking
This commit is contained in:
Mark Backman
2026-01-21 10:33:59 -05:00
committed by GitHub

View File

@@ -51,6 +51,5 @@ class MuteUntilFirstBotCompleteUserMuteStrategy(BaseUserMuteStrategy):
return not self._first_speech_handled
async def _handle_bot_stopped_speaking(self, frame: BotStoppedSpeakingFrame):
self._bot_speaking = False
if not self._first_speech_handled:
self._first_speech_handled = True