Merge pull request #5579 from cocool97/master

This commit is contained in:
Bond-009
2021-03-25 01:45:43 +01:00
committed by GitHub
3 changed files with 12 additions and 0 deletions

View File

@@ -133,6 +133,11 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
channel.ImageUrl = value;
}
if (attributes.TryGetValue("group-title", out string groupTitle))
{
channel.ChannelGroup = groupTitle;
}
channel.Name = GetChannelName(extInf, attributes);
channel.Number = GetChannelNumber(extInf, attributes, mediaUrl);