You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ excluded_devices == none or excluded_devices | length == 0 or trigger.event.data.device_id not in excluded_devices }}
97
+
{{ not exclude_devices_enabled or (excluded_devices == none or excluded_devices | length == 0 or trigger.event.data.device_id not in excluded_devices) }}
91
98
- condition: template
92
99
value_template: |-
93
-
{{ not include_devices_enabled or trigger.event.data.device_id in include_devices }}
100
+
{{ not include_devices_enabled or (include_devices != none and include_devices | length > 0 and trigger.event.data.device_id in include_devices) }}
0 commit comments