mirror of
https://github.com/esphome/esphome.git
synced 2024-11-13 10:25:03 +01:00
Fix voice assistant crash when no speaker configured (#7075)
This commit is contained in:
parent
fbab0aceb0
commit
c6c1d3a3ad
@ -684,7 +684,9 @@ void VoiceAssistant::on_event(const api::VoiceAssistantEventResponse &msg) {
|
||||
this->defer([this, text]() {
|
||||
this->tts_start_trigger_->trigger(text);
|
||||
#ifdef USE_SPEAKER
|
||||
this->speaker_->start();
|
||||
if (this->speaker_ != nullptr) {
|
||||
this->speaker_->start();
|
||||
}
|
||||
#endif
|
||||
});
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user