Make to work with current channel id values

This commit is contained in:
Jose Alacan 2016-02-22 20:09:08 -05:00
parent 05db0cde88
commit caaa10e2d6

View File

@ -71,7 +71,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts
else if (!string.IsNullOrWhiteSpace(extInf))
{
var channel = GetChannelnfo(extInf);
channel.Id = line;
channel.Id = channelIdPrefix + urlHash + line.GetMD5().ToString("N");
channel.Path = line;
channels.Add(channel);
extInf = "";
}