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