add path help messages

This commit is contained in:
Luke Pulverenti
2015-07-27 12:21:18 -04:00
parent d440e89c50
commit 7f9a2f1af6
10 changed files with 23 additions and 23 deletions

View File

@@ -5,6 +5,7 @@ using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.Tasks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.LiveTv
@@ -61,7 +62,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
public bool IsHidden
{
get { return _liveTvManager.Services.Count == 1 && GetConfiguration().TunerHosts.Count == 0; }
get { return _liveTvManager.Services.Count == 1 && GetConfiguration().TunerHosts.Count(i => i.IsEnabled) == 0; }
}
public bool IsEnabled