Hi everyone,
I'm using TVHeadend as docker and to get XMLTV data I use the "XMLTV: XMLTV URL grabber" where I provide the URL https://xmltv.info/de/epg.xml
as extra parameter. I've seen that this executes a script /usr/bin/tv_grab_url https://xmltv.info/de/epg.xml
The problem is now, that this XMLTV provider generates a unique link for every request, so if you request https://xmltv.info/de/epg.xml
you get a redirect to https://xmltv.info/de/epg.xml/e4aed9d33f528a05dd3fa1ed2f8b3ef3
and here you get the XMLTV data. This link is then invalid. So for tv_grab_url
to function with this provider it needs to follow redirects. If you look in the script code you find the line
curl -s "$URL"
but to follow redirects it should be
curl -sL "$URL"
Where can I make a pull request to suggest the change?