diff options
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto/DtoService.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Dto/DtoService.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs index 348d3cb26..061898176 100644 --- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs +++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs @@ -781,6 +781,15 @@ namespace MediaBrowser.Server.Implementations.Dto } } + if (fields.Contains(ItemFields.ShortOverview)) + { + var hasShortOverview = item as IHasShortOverview; + if (hasShortOverview != null) + { + dto.ShortOverview = hasShortOverview.ShortOverview; + } + } + // If there are no backdrops, indicate what parent has them in case the Ui wants to allow inheritance if (dto.BackdropImageTags.Count == 0) { |
