mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Only request VA port from first client that is subscribed (#4747)
This commit is contained in:
		| @@ -429,15 +429,16 @@ void APIServer::on_shutdown() { | ||||
|  | ||||
| #ifdef USE_VOICE_ASSISTANT | ||||
| bool APIServer::start_voice_assistant() { | ||||
|   bool result = false; | ||||
|   for (auto &c : this->clients_) { | ||||
|     result |= c->request_voice_assistant(true); | ||||
|     if (c->request_voice_assistant(true)) | ||||
|       return true; | ||||
|   } | ||||
|   return result; | ||||
|   return false; | ||||
| } | ||||
| void APIServer::stop_voice_assistant() { | ||||
|   for (auto &c : this->clients_) { | ||||
|     c->request_voice_assistant(false); | ||||
|     if (c->request_voice_assistant(false)) | ||||
|       return; | ||||
|   } | ||||
| } | ||||
| #endif | ||||
|   | ||||
		Reference in New Issue
	
	Block a user