mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 05:53:03 +03:00
add tv genre configuration options
This commit is contained in:
@@ -73,9 +73,15 @@ namespace MediaBrowser.Model.LiveTv
|
||||
|
||||
public string[] EnabledTuners { get; set; }
|
||||
public bool EnableAllTuners { get; set; }
|
||||
public string[] NewsGenres { get; set; }
|
||||
public string[] SportsGenres { get; set; }
|
||||
public string[] KidsGenres { get; set; }
|
||||
|
||||
public ListingsProviderInfo()
|
||||
{
|
||||
NewsGenres = new string[] { "news" };
|
||||
SportsGenres = new string[] { "sports", "basketball", "baseball", "football" };
|
||||
KidsGenres = new string[] { "kids", "family", "children" };
|
||||
EnabledTuners = new string[] { };
|
||||
EnableAllTuners = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user