Notification image hyperlink

Hello,

Whenever somebody rings my doorbell I create a persistent notification with a hyperlink pointing towards the full image url.

Strange thing is whenever I click on the url I get a blank window

Whenever I click on refresh in the browser, the image appears (so it is definitly published on the webserver)

My configuration (automation) looks like this

- id: '1574603291945'
  alias: '[doorbell] push actions'
  description: ''
  trigger:
  - event_data:
      address: 1/5/4
      data: 1
    event_type: knx_event
    platform: event
  condition: []
  action:
  - data:
      message: Er is iemand aan de deur.
      title: Deurbel
    service: notify.notify
  - data:
      deviceID:
      - ipad_living
      entity_id: camera.cam_voordeur
      large: true
    service: browser_mod.more_info
  - data_template:
      value: '{{ now().strftime(''%Y%m%d_%H%M%S'') }}'
    entity_id: input_text.cam_snap_timestamp
    service: input_text.set_value
  - data:
      filename: /config/www/camera/{{ states.input_text.cam_snap_timestamp.state }}_snap_voordeur.jpg
    entity_id: camera.cam_voordeur
    service: camera.snapshot
  - data:
      message: 'Er is iemand aan de deur: [foto voordeur](/local/camera/{{ states.input_text.cam_snap_timestamp.state
        }}_snap_voordeur.jpg) ![image](/local/camera/{{ states.input_text.cam_snap_timestamp.state
        }}_snap_voordeur.jpg) '
      title: Deurbel
    service: persistent_notification.create
  - delay: 00:01:00
  - service: browser_mod.close_popup

Does anybody knows how I can solve this problem?

Best regards,
Stijn

should I file a bug report for this?

Can you open dev tools, networking tab and then click the notification, then see if any errors occur within the networking tab or console?

Hi Lewis,

I can’t manage to find the networking tab… help is welcome

kr,
Stijn

If you are using Edge which it looks like you are there should be a tab called network when you press f12?

thanks

I was looking inside the dev tools within hass.io first. :upside_down_face:

When I use the dev tools and networking tab it seems like everything is preloaded. nothing happens or new appears when I click the notification. (sidebar from hassio dissappears and the picture URL is shown inside the URL browser window)

when I click refresh the browser the picture is then loaded full screen.