Merge branch 'avoid_forced_heap_alloc_light_json_schema' into integration

This commit is contained in:
J. Nick Koston
2026-01-04 18:06:14 -10:00
@@ -160,7 +160,7 @@ void LightJSONSchema::parse_json(LightState &state, LightCall &call, JsonObject
if (root[ESPHOME_F("effect")].is<const char *>()) {
const char *effect = root[ESPHOME_F("effect")];
call.set_effect(effect);
call.set_effect(effect, strlen(effect));
}
if (root[ESPHOME_F("effect_index")].is<uint32_t>()) {