diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-15 16:29:00 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-01-15 16:29:00 -0500 |
| commit | 6e42398f9ece91358fc52a822e07e6bc9a0e0640 (patch) | |
| tree | 2e6d3dd6b0a9da25b4a96b84c48e8e08b640d139 /Emby.Server.Implementations | |
| parent | 95ceddb7d9c817f2e9233bd5116e7cb8ee76fc49 (diff) | |
update video osd
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Dto/DtoService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs index 06ac7031a..f866c34de 100644 --- a/Emby.Server.Implementations/Dto/DtoService.cs +++ b/Emby.Server.Implementations/Dto/DtoService.cs @@ -1512,7 +1512,8 @@ namespace Emby.Server.Implementations.Dto return artist; } } - return item.GetParent(); + + return item.DisplayParent ?? item.GetParent(); } private void AddInheritedImages(BaseItemDto dto, BaseItem item, DtoOptions options, BaseItem owner) |
