Hi there 👋 as far as I understand the event trigger docs, this yaml should work, but it doesn't. The trigger never triggers. If I make seperate triggers for each of the /dw_plus_xx, they work just fine.
# doesn't work
- alias: reaction telegram
trigger: event
event_type: telegram_callback
event_data:
command:
- "/dw_plus_p1"
- "/dw_plus_s1"
- "/dw_plus_t1"
# doesn't work
- alias: reaction telegram
trigger: event
event_type: telegram_callback
event_data:
command:
- "/dw_plus_p1"
# does work
- alias: reaction telegram
trigger: event
event_type: telegram_callback
event_data:
command: "/dw_plus_p1"
Question: Am I misinterpreting the docs where it says # any of these will match or is this a bug?