mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 08:23:59 +02:00
Merge pull request #6485 from markshark05/patch-1
Update M3U Channel Name Precedence
This commit is contained in:
commit
ffef1baa2f
1 changed files with 2 additions and 2 deletions
|
|
@ -295,11 +295,11 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
|||
}
|
||||
}
|
||||
|
||||
attributes.TryGetValue("tvg-name", out string name);
|
||||
string name = nameInExtInf;
|
||||
|
||||
if (string.IsNullOrWhiteSpace(name))
|
||||
{
|
||||
name = nameInExtInf;
|
||||
attributes.TryGetValue("tvg-name", out name);
|
||||
}
|
||||
|
||||
if (string.IsNullOrWhiteSpace(name))
|
||||
|
|
|
|||
Loading…
Reference in a new issue