mirror of
https://github.com/esphome/esphome.git
synced 2024-11-12 10:16:02 +01:00
Fix voice assistant crash when no speaker configured (#7075)
This commit is contained in:
parent
7f83bcfdd9
commit
4a80a09db3
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user