﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	mlocked
10604	iptv xmltvid bug (devel/rtp)	andrej.filipcic@…	danielk	"With devel/rtp branch, there is a bug in channel scanner for iptv. xmltvid is not set. This patch fixes it:


{{{
diff --git a/mythtv/libs/libmythtv/iptvchannelfetcher.cpp b/mythtv/libs/libmythtv/iptvchannelfetcher.cpp
index 91af556..160f7a5 100644
--- a/mythtv/libs/libmythtv/iptvchannelfetcher.cpp
+++ b/mythtv/libs/libmythtv/iptvchannelfetcher.cpp
@@ -365,7 +365,7 @@ static bool parse_chan_info(const QString   &rawdata,
             }
             else if (line.startsWith(""#EXTMYTHTV:""))
             {
-                QString data = line.mid(line.indexOf(':'));
+                QString data = line.mid(line.indexOf(':')+1);
                 QString key = data.left(data.indexOf('='));
                 if (!key.isEmpty())
                     values[key] = data.mid(data.indexOf('=')+1);
}}}
"	Patch - Bug Fix	closed	minor	0.26	MythTV - General	Unspecified	medium	fixed			0
