mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 22:38:30 +01:00
#643 - Support episodes directly in series folder
This commit is contained in:
@@ -86,7 +86,7 @@ namespace MediaBrowser.Controller.Entities.TV
|
||||
{
|
||||
get
|
||||
{
|
||||
return Season;
|
||||
return FindParent<Season>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -178,20 +178,6 @@ namespace MediaBrowser.Controller.Entities.TV
|
||||
get { return _series ?? (_series = FindParent<Series>()); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The _season
|
||||
/// </summary>
|
||||
private Season _season;
|
||||
/// <summary>
|
||||
/// This Episode's Season Instance
|
||||
/// </summary>
|
||||
/// <value>The season.</value>
|
||||
[IgnoreDataMember]
|
||||
public Season Season
|
||||
{
|
||||
get { return _season ?? (_season = FindParent<Season>()); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// This is the ending episode number for double episodes.
|
||||
/// </summary>
|
||||
|
||||
@@ -4,6 +4,7 @@ using MediaBrowser.Model.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace MediaBrowser.Controller.Entities.TV
|
||||
@@ -100,5 +101,14 @@ namespace MediaBrowser.Controller.Entities.TV
|
||||
|
||||
return args;
|
||||
}
|
||||
|
||||
[IgnoreDataMember]
|
||||
public bool ContainsEpisodesWithoutSeasonFolders
|
||||
{
|
||||
get
|
||||
{
|
||||
return Children.OfType<Video>().Any();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user