diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-05-21 03:41:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-21 03:41:20 -0400 |
| commit | 10fb7836c49654811b4621b3ce49fe40f83e7d61 (patch) | |
| tree | 28a91750c684cc2bc04a7a05c27864d26a525a75 | |
| parent | 459dd30033bffbae1139425527760f10c5875391 (diff) | |
| parent | 41ea0d99f4ee953d6e955c355cef0e5088f9b9fd (diff) | |
Merge pull request #2655 from MediaBrowser/dev
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) |
