diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-21 03:40:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-21 03:40:57 -0400 |
| commit | 41ea0d99f4ee953d6e955c355cef0e5088f9b9fd (patch) | |
| tree | 28a91750c684cc2bc04a7a05c27864d26a525a75 | |
| parent | d3fdfbb36853ff8937e0f49c2cf8fa2a23a5c114 (diff) | |
query fixes
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Season.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Season.cs b/MediaBrowser.Controller/Entities/TV/Season.cs index af1b6d53c..4a3c9c081 100644 --- a/MediaBrowser.Controller/Entities/TV/Season.cs +++ b/MediaBrowser.Controller/Entities/TV/Season.cs @@ -188,7 +188,7 @@ namespace MediaBrowser.Controller.Entities.TV public IEnumerable<Episode> GetEpisodes() { - return Series.GetSeasonEpisodes(this, null, null); + return Series.GetSeasonEpisodes(this, null, null, new DtoOptions(true)); } public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren) |
