One of my devices has been kicking up this error for quite some time (NabuCasa). Honestly, I’m not terribly concerned since I use OTP’s and strong passwords for all accounts:
It’s my understanding persistent notifications are handled differently in this version. Previously, I had an automation that cleared these as they came in:
alias: Failed HTTP login attempt notification auto-dismiss (127.0.0.1)
trigger:
- platform: state
entity_id: persistent_notification.http_login
condition:
- condition: and
conditions:
- condition: template
value_template: "{{ trigger.to_state.state != 'None' }}"
- condition: or
conditions:
- condition: template
value_template: >-
{{ "127.0.0.1" in
states.persistent_notification.http_login.attributes.message }}
action:
- service: persistent_notification.dismiss
data:
notification_id: http_login
Any suggestions how I can do the same now? Or some way I can keep these notifications constantly arising? These notifications are originating from NabuCasa, not my reverse proxy.
Thanks in advance!