replace channel active mode with is enabled and show in epg (#2256)

* add channel enabled setting

* remove channel active mode
This commit is contained in:
Jason Dove
2025-08-04 21:24:26 +00:00
committed by GitHub
parent c055e59723
commit b40ac9ef52
30 changed files with 24613 additions and 58 deletions
+1 -1
View File
@@ -151,7 +151,7 @@
private bool CanPreviewChannel(ChannelViewModel channel)
{
if (channel.ActiveMode is ChannelActiveMode.Inactive)
if (!channel.IsEnabled)
{
return false;
}