Hello,
my problem is, that at the moment the IPTV Simple PVR addon only reads “tvg-id” in the .m3u file but i got only a m3u file from my provider with “tvg-ID” (so its uppercase and he dont want to update that) so can anybody compile me the addon with the function to check for tvg-id and tvg-ID ? so to ignore Casesensitiv.
i tried by myself to compile for android but can only compile it for linux. but then it will not run on my andoroid tv box.
on git : https://github.com/kodi-pvr/pvr.iptvsimple
a simple change is ok for me like that:
#define TVG_INFO_ID_MARKER “tvg-id=”
#define TVG_INFO_ID2_MARKER “tvg-ID=”
…….
if (strTvgId.empty())
{
strTvgId = ReadMarkerValue(strInfoLine, TVG_INFO_ID2_MARKER);
if (strTvgId.empty())
{
char buff[255];
sprintf(buff, “%d”, atoi(strInfoLine.c_str()));
strTvgId.append(buff);
}
}
thx in advice