Pushover not working since 0.30..?

Anyone else not getting Pushover notifications since 0.30 (and 0.30.1)…?

I have tested the api’s in another app and all work fine, as do my other notify components in HA.

notify:
  - name: pushover
    platform: pushover
    api_key: xxxx
    user_key: xxxx

automation:
  - alias: Startup Notification
    trigger:
      - platform: event
        event_type: homeassistant_start
    action:
      - service: notify.pushover
        data_template:
          title: HA
          message: 'HA is up and running..!'

Thanks

1 Like

The adittion of multiple targets support requires that field be added to the notify call. You need to add an empty target line and that should fix things.

automation:
  - alias: Startup Notification
trigger:
  - platform: event
    event_type: homeassistant_start
action:
  - service: notify.pushover
    data_template:
      title: HA
      message: 'HA is up and running..!'
      target: ""
2 Likes

Do you need to add the target line to all notify components (i.e. pushbullet, pushover, ios notify, etc.), or is this only a pushover thing?

Not sure if it extends to all of them.

Awesome, that did it - thank you. Also tested in front end:

notify/pushover
{ "title": "HA", "message": "Testing 123", "target": "" }

You do not need this for Pushover (fails if you add “target”: “”)

notify/pushbullet
{ "title": "HA", "message": "Testing 123" }

Thank you !!!