Only one alert arriving? iOS app and pushover not happy to coexist?

Strange, this. Before I added the pushover notification, the iOS app notification was working perfectly. Now only the pushover works? Any ideas why this might be?

I’ve tried reloading push notifications from within the iOS app and I’ve tried closing it and reopening it. I HAVEN’T yet tried a full reboot of Hass as I’ve reloaded my automations and that started the pushover notifications working.

Thank you!!

  - id: alarm_triggered
alias: '[Alarm] Triggered'
trigger:
- platform: state
  entity_id: alarm_control_panel.house
  to: triggered
action: 
- service: notify.ios
  data_template:
    message: ALARM TRIGGERED!!! {{ states[states.alarm_control_panel.house.attributes.changed_by.split(".")[0]][
      states.alarm_control_panel.house.attributes.changed_by.split(".")[1]].name }}
    data:
      push:
        badge: 0
- service: notify.steve
  data:
    title: 'ALARM TRIGGERED!!!'
    message: 'ALARM!!!!'
    data:
      priority: 1
      timestamp: true
      expire: 3600
      retry: 30
      sound: siren

it’s probably because your message is not enclosed in quotes (')
Try and replace
message: ALARM TRIGGERED!!! {{ states[states.alarm_control_panel.house.attributes.changed_by.split(".")[0]][ states.alarm_control_panel.house.attributes.changed_by.split(".")[1]].name }}
with
message: 'ALARM TRIGGERED!!! {{ states[states.alarm_control_panel.house.attributes.changed_by.split(".")[0]][ states.alarm_control_panel.house.attributes.changed_by.split(".")[1]].name }}'

1 Like

Hmm - no - that hasn’t fixed it - and nor has ensuring there’s no linebreak here
states[states.alarm_control_panel.house.attributes.changed_by.split(“.”)[0**]][**states.alarm_control_panel.house.attributes.changed_by.split(“.”)

Weird!