I have this in my configuration.yaml:
scrape:
- resource_template: 'https://api.omroepbrabant.nl/api/media/radio/epg/{{ now().strftime("%Y-%m-%d") }}'
sensor:
- name: Omroep Brabant EPG - Current title
select: "*"
Unfortunately, the resource_template is only evaluated when creating the configuration, so I get the EPG data of the same date over and over again, until I restart HA.
Is this a bug in HA? Is there a way to work around this (except restarting the full HA every day)? Re-load a (certain) integration or resource every day at midnight??