Skip to content

Commit

Permalink
Fix parsing of #EXTMYTHTV tag in M3U playlists..
Browse files Browse the repository at this point in the history
This caused any additional mythtv specific tags to be ignored
  • Loading branch information
jyavenard committed Jul 19, 2013
1 parent 177c21e commit 639a1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/channelscan/iptvchannelfetcher.cpp
Expand Up @@ -363,7 +363,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);
Expand Down

0 comments on commit 639a1fc

Please sign in to comment.