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