diff --git a/ovos_plugin_manager/templates/tts.py b/ovos_plugin_manager/templates/tts.py index 2a753975..8c4a77a3 100644 --- a/ovos_plugin_manager/templates/tts.py +++ b/ovos_plugin_manager/templates/tts.py @@ -327,7 +327,9 @@ def _init_playback(self, playback): TTS.playback.attach_tts(self) if not TTS.playback.enclosure: TTS.playback.enclosure = EnclosureAPI(self.bus) - TTS.playback.start() + + if not TTS.playback._started: + TTS.playback.start() @property def enclosure(self):