This commit is contained in:
Luke Pulverenti 2014-02-23 22:48:27 -05:00
parent 21706ffa52
commit 7497fe9554
2 changed files with 3 additions and 3 deletions

View File

@ -604,7 +604,7 @@ namespace MediaBrowser.Providers.MediaInfo
if (vobs.Count > 0)
{
var minSizeVobs = allVobs
var minSizeVobs = vobs
.SkipWhile(f => f.Length < minPlayableSize)
.ToList();

View File

@ -846,8 +846,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv
var days = Math.Round(((double)maxPrograms) / programsPerDay);
// No less than 2, no more than 14
return Math.Max(2, Math.Min(days, 14));
// No less than 2, no more than 7
return Math.Max(2, Math.Min(days, 7));
}
private async Task<IEnumerable<Tuple<string, ChannelInfo>>> GetChannels(ILiveTvService service, CancellationToken cancellationToken)