Add 'group-title' channel parsing

This commit is contained in:
LIAUD
2021-03-20 20:15:19 +01:00
parent 9fe3ca7a92
commit 32853ca244
2 changed files with 11 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);