1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-05 18:30:57 +01:00

Copy active wake words to message (#7481)

This commit is contained in:
Michael Hansen 2024-09-22 14:44:53 -05:00 committed by Jesse Hills
parent 6fde5e0fed
commit 66f9597d9e
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -1242,6 +1242,9 @@ VoiceAssistantConfigurationResponse APIConnection::voice_assistant_get_configura
}
resp.available_wake_words.push_back(std::move(resp_wake_word));
}
for (auto &wake_word_id : config.active_wake_words) {
resp.active_wake_words.push_back(wake_word_id);
}
resp.max_active_wake_words = config.max_active_wake_words;
}
return resp;