aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLIAUD <corentin.liaud@orange.fr>2021-03-20 20:15:19 +0100
committerLIAUD <corentin.liaud@orange.fr>2021-03-20 20:15:19 +0100
commit32853ca2441d4b730258e6911faa56eba608dc1d (patch)
treebcbd28885031b04f95d014bb003c0d1311c294db
parent9fe3ca7a92ac12ebb0fc88c5458bc8568458a478 (diff)
Add 'group-title' channel parsing
-rw-r--r--Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs5
-rw-r--r--MediaBrowser.Controller/LiveTv/ChannelInfo.cs6
2 files changed, 11 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs b/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs
index c4f173c7a..2af635492 100644
--- a/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs
+++ b/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs
@@ -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);
diff --git a/MediaBrowser.Controller/LiveTv/ChannelInfo.cs b/MediaBrowser.Controller/LiveTv/ChannelInfo.cs
index 44bd38b54..0f3f87847 100644
--- a/MediaBrowser.Controller/LiveTv/ChannelInfo.cs
+++ b/MediaBrowser.Controller/LiveTv/ChannelInfo.cs
@@ -46,6 +46,12 @@ namespace MediaBrowser.Controller.LiveTv
public ChannelType ChannelType { get; set; }
/// <summary>
+ /// Gets or sets the group of the channel
+ /// </summary>
+ /// <value>The group of the channel</value>
+ public string ChannelGroup { get; set; }
+
+ /// <summary>
/// Supply the image path if it can be accessed directly from the file system.
/// </summary>
/// <value>The image path.</value>