Please help with following.
I have automation based on event mobile_app_notification_action:
- I trigger notification to my mobile phone like this:
- id: 'Turn Off Devices Notification'
alias: Turn Off Devices Notification
description: "Actionable notification to Turn Off devices when we are AWAY for some time"
mode: single
trigger:
- platform: numeric_state
entity_id: zone.home
for:
hours: 0
minutes: 1
seconds: 0
below: 1
condition:
- condition: time
after: "06:00:00"
before: "21:00:00"
action:
- service: notify.mobile_app_redmi_note_8_pro
data:
title: Turn Off Devices
message: Do You want to turn off devices?
data:
actions:
- action: TURN_OFF
title: "Yes"
- action: NO_ACTION
title: "No"
- When I click on “Yes”, mobile_app_notification_action event is never received in Home Assistant. I used listener in Development Tools to verify that.
I don’t understand why.
This worked fine couple of months before. Than I stop using automation for some time (disable it) and now I noticed above problem.
Any ideas?
When I press “Yes” button in actionable message on the phone I get short dialog which informs than action failed: “Failed to notify home assistant of picked option”
How to troubleshoot this?