1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 20:32:21 +01:00

Fix voice assistant crash when no speaker configured (#7075)

This commit is contained in:
kevdliu
2024-07-11 17:32:31 -04:00
committed by Jesse Hills
parent fbab0aceb0
commit c6c1d3a3ad

View File

@@ -684,7 +684,9 @@ void VoiceAssistant::on_event(const api::VoiceAssistantEventResponse &msg) {
this->defer([this, text]() { this->defer([this, text]() {
this->tts_start_trigger_->trigger(text); this->tts_start_trigger_->trigger(text);
#ifdef USE_SPEAKER #ifdef USE_SPEAKER
this->speaker_->start(); if (this->speaker_ != nullptr) {
this->speaker_->start();
}
#endif #endif
}); });
break; break;