Display specials within seasons

This commit is contained in:
Luke Pulverenti
2013-11-15 16:31:33 -05:00
parent cc16fd3af8
commit a09e330d4e
12 changed files with 172 additions and 4 deletions

View File

@@ -796,7 +796,7 @@ namespace MediaBrowser.Controller.Entities
foreach (var tuple in list)
{
if (tasks.Count > 7)
if (tasks.Count > 10)
{
await Task.WhenAll(tasks).ConfigureAwait(false);
}
@@ -873,7 +873,8 @@ namespace MediaBrowser.Controller.Entities
progress.Report((90 * percent) + 10);
}
}
}));
}, cancellationToken));
}
cancellationToken.ThrowIfCancellationRequested();

View File

@@ -32,6 +32,12 @@ namespace MediaBrowser.Controller.Entities.TV
}
}
/// <summary>
/// Gets the season in which it aired.
/// </summary>
/// <value>The aired season.</value>
public int? SpecialSeasonNumber { get; set; }
/// <summary>
/// We want to group into series not show individually in an index
/// </summary>