Hi there!
I’m currently trying to build a newsfeed for my front page. The stock update interval of an hour is too long for me. Therefore, I disabled the auto update function, and created an automation which triggers every minute and runs homeassistant.update_entity on the feedreader entity, as so:
alias: news_update
description: ""
triggers:
- trigger: time_pattern
minutes: /1
conditions: []
actions:
- action: homeassistant.update_entity
data:
entity_id:
- event.tagesschau_de_die_nachrichten_der_ard
mode: single
Sadly, the feedreader integration doesn’t seem to listen to the update command. I’m completely certain that feedreader is set up correctly, since I was able to recieve updates before I disabled the auto update function. Is there anything obvious I’m missing here?