1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-26 23:22:21 +01:00

Call on_error if no api client connected that handles voice (#4709)

This commit is contained in:
Jesse Hills
2023-04-20 08:56:37 +12:00
committed by GitHub
parent 3a587ea0d4
commit 4cea74ef3b
3 changed files with 9 additions and 4 deletions

View File

@@ -428,10 +428,12 @@ void APIServer::on_shutdown() {
}
#ifdef USE_VOICE_ASSISTANT
void APIServer::start_voice_assistant() {
bool APIServer::start_voice_assistant() {
bool result = false;
for (auto &c : this->clients_) {
c->request_voice_assistant(true);
result |= c->request_voice_assistant(true);
}
return result;
}
void APIServer::stop_voice_assistant() {
for (auto &c : this->clients_) {