2021-06-17, 09:51
I have a problem with your add-on.
For one of the TV add-ons I'm using, your add-on has stopped importing EPGs.
Until version 17.2, it worked without problems, but since version 17.3 it no longer works.
I searched for what it was and found the cause.
The author of the add-on does not use the tvg-id attribute.
The IPTV Simple client add-on takes this into account - see the documentation:
tvg-id
Corresponds to 'channel-id' field in the EPG xml file.
If missing from the M3U file, the addon will use the 'tvg-name' tag to map the channel to the EPG.
I suggest an adjustment to your add-on. In the models.py script, change line 621 as follows:
instead of
use
I tried it and it works.
For one of the TV add-ons I'm using, your add-on has stopped importing EPGs.
Until version 17.2, it worked without problems, but since version 17.3 it no longer works.
I searched for what it was and found the cause.
The author of the add-on does not use the tvg-id attribute.
The IPTV Simple client add-on takes this into account - see the documentation:
tvg-id
Corresponds to 'channel-id' field in the EPG xml file.
If missing from the M3U file, the addon will use the 'tvg-name' tag to map the channel to the EPG.
I suggest an adjustment to your add-on. In the models.py script, change line 621 as follows:
instead of
epg_id = attribs.pop('tvg-id', None),
use
epg_id = attribs.pop('tvg-id', name),
I tried it and it works.