mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-01 09:51:13 +02:00
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:
@@ -1001,7 +1001,7 @@ void CBouquetManager::loadWebchannels(int mode)
|
|||||||
if (strLine.find(M3U_INFO_MARKER) != std::string::npos)
|
if (strLine.find(M3U_INFO_MARKER) != std::string::npos)
|
||||||
{
|
{
|
||||||
int iColon = (int)strLine.find_first_of(':');
|
int iColon = (int)strLine.find_first_of(':');
|
||||||
int iComma = (int)strLine.find_last_of(',');
|
int iComma = (int)strLine.find_first_of(',');
|
||||||
title = "";
|
title = "";
|
||||||
prefix = "";
|
prefix = "";
|
||||||
group = "";
|
group = "";
|
||||||
|
Reference in New Issue
Block a user