improve m3u parsing

This commit is contained in:
Luke Pulverenti
2017-03-25 18:08:43 -04:00
parent 0cffe00aae
commit b2f7352094
2 changed files with 11 additions and 0 deletions

View File

@@ -144,6 +144,11 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
channel.TunerChannelId = string.IsNullOrWhiteSpace(tvgId) ? channelId : tvgId;
if (!string.IsNullOrWhiteSpace(channel.TunerChannelId) && channel.TunerChannelId.IndexOf(".json.schedulesdirect.org", StringComparison.OrdinalIgnoreCase) != -1)
{
channel.TunerChannelId = channel.TunerChannelId.Replace(".json.schedulesdirect.org", string.Empty, StringComparison.OrdinalIgnoreCase).TrimStart('I');
}
var channelIdValues = new List<string>();
if (!string.IsNullOrWhiteSpace(channelId))
{