Has anyone got the deep link functionality of the Upcoming Media Card working?
I can retrieve the deep_link
attribute value using, for example:
{{ state_attr('sensor.plex_recently_added_movie','data')[1].deep_link }}
However, if I try to use that info in the card configuration, it does not seem to do anything. For example, the following configuration correctly displays titles, fanart, ratings etc., but the results are not clickable.
title: Recently Added Movies
type: custom:upcoming-media-card
entity: sensor.plex_recently_added_movie
image_style: fanart
hide_unflagged: true
enable_tooltips: true
enable_transparency: true
url: "{{ state_attr('sensor.plex_recently_added_movie','data')[1].deep_link }}"
(Incidentally, I can’t seem to get tooltips and transparency to work either, but everything else works.)