aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-15 16:29:00 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-15 16:29:00 -0500
commit6e42398f9ece91358fc52a822e07e6bc9a0e0640 (patch)
tree2e6d3dd6b0a9da25b4a96b84c48e8e08b640d139 /Emby.Server.Implementations
parent95ceddb7d9c817f2e9233bd5116e7cb8ee76fc49 (diff)
update video osd
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Dto/DtoService.cs3
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)