zapit/bouquets: fix reading channelnames with commas from xmltv.m3u

Origin commit data
------------------
Commit: 7eee336e06
Author: vanhofen <vanhofen@gmx.de>
Date: 2020-02-15 (Sat, 15 Feb 2020)

Origin message was:
------------------
- zapit/bouquets: fix reading channelnames with commas from xmltv.m3u
This commit is contained in:
vanhofen
2020-02-15 22:59:33 +01:00
parent 96c79757a9
commit e798429e29

View File

@@ -1001,7 +1001,7 @@ void CBouquetManager::loadWebchannels(int mode)
if (strLine.find(M3U_INFO_MARKER) != std::string::npos)
{
int iColon = (int)strLine.find_first_of(':');
int iComma = (int)strLine.find_last_of(',');
int iComma = (int)strLine.find_first_of(',');
title = "";
prefix = "";
group = "";