1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-03 20:02:22 +01:00

Fix travis

This commit is contained in:
Otto Winter
2019-07-28 15:40:31 +02:00
parent a783637a7a
commit 11e88019c2
2 changed files with 1 additions and 5 deletions

View File

@@ -318,7 +318,7 @@ bool APIConnection::send_light_info(light::LightState *light) {
msg.max_mireds = traits.get_max_mireds();
}
if (light->supports_effects()) {
msg.effects.push_back("None");
msg.effects.emplace_back("None");
for (auto *effect : light->get_effects())
msg.effects.push_back(effect->get_name());
}