|
|
|
@ -20,7 +20,7 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
|
|
|
|
|
var season = args.Parent as Season;
|
|
|
|
|
|
|
|
|
|
// If the parent is a Season or Series, then this is an Episode if the VideoResolver returns something
|
|
|
|
|
if (season != null)
|
|
|
|
|
if (season != null || args.Parent is Series)
|
|
|
|
|
{
|
|
|
|
|
Episode episode = null;
|
|
|
|
|
|
|
|
|
@ -51,8 +51,11 @@ namespace MediaBrowser.Server.Implementations.Library.Resolvers.TV
|
|
|
|
|
|
|
|
|
|
if (episode != null)
|
|
|
|
|
{
|
|
|
|
|
episode.ParentIndexNumber = season.IndexNumber;
|
|
|
|
|
|
|
|
|
|
if (season != null)
|
|
|
|
|
{
|
|
|
|
|
episode.ParentIndexNumber = season.IndexNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (episode.ParentIndexNumber == null)
|
|
|
|
|
{
|
|
|
|
|
episode.ParentIndexNumber = TVUtils.GetSeasonNumberFromEpisodeFile(args.Path);
|
|
|
|
|