diff --git a/custom_components/adaptive_lighting/switch.py b/custom_components/adaptive_lighting/switch.py index 181bd20d..58638c3d 100644 --- a/custom_components/adaptive_lighting/switch.py +++ b/custom_components/adaptive_lighting/switch.py @@ -2003,6 +2003,9 @@ class AdaptiveLightingManager: if is_our_context(call.context): return + if ATTR_EFFECT in data[CONF_PARAMS] or ATTR_FLASH in data[CONF_PARAMS]: + return + entity_ids = self._get_entity_list(data) # For simplicity, only service calls affecting a single entity are currently handled.