Image not displaying
nwithan8 opened this issue · 4 comments
Including an image
field is not displaying the image in the popup.
- I have included
image
in the right location in the YAML schema - The image is publicly accessible
- I have treid both internal and external URLs, with both HTTP and HTTPS
Hi @nwithan8 ! Can you provide the code your using on configuration.yaml and the automation/script where you is trying to send an image notigfication?
This is a simple action sending notification with image that is working on my setup:
service: notify.[DEVICE_NAME] data: message: Image sample data: image: https://picsum.photos/300/300
Hi @nwithan8 ! Can you provide the code your using on configuration.yaml and the automation/script where you is trying to send an image notigfication?
This is a simple action sending notification with image that is working on my setup:
service: notify.[DEVICE_NAME] data: message: Image sample data: image: https://picsum.photos/300/300
service: notify.tv_overlay_notify_bedroom_chromecast
data:
message: "message"
title: "title"
data:
image: IP_ADDRESS:8123{{ PUBLICLY_ACCESSIBLE_IMAGE_URL }}
color: "#B00020"
seconds: "10"
enabled: true
This code is working for me. Are you using the "Default" notification layout? "Minimalist" and "Icon only" does not display images, unless you customize it (Premium users only).
If that's not the problem, please share the tvoverlay notify on configuration.yaml
Ah yes, that was it, had it set to "Minimalist". Working now, thanks for your help!