From b6ffa8bf6fc574a4311259cada9bd93695e212c2 Mon Sep 17 00:00:00 2001 From: miro Date: Wed, 23 Oct 2024 16:07:50 +0100 Subject: [PATCH] fix:b64 --- ovos_audio/service.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ovos_audio/service.py b/ovos_audio/service.py index d9565a2..f947e4e 100644 --- a/ovos_audio/service.py +++ b/ovos_audio/service.py @@ -463,9 +463,8 @@ def handle_stop(self, message: Message): """ # check PlaybackThread if self.is_speaking: - LOG.debug("Stopping TTS") self._last_stop_signal = time.time() - self.tts.playback.stop() # Clear here to get instant stop + self.tts.playback.clear() # Clear here to get instant stop self.bus.emit(message.forward("mycroft.stop.handled", {"by": "TTS"})) @staticmethod