aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Controller/Library/DtoBuilder.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Library/DtoBuilder.cs b/MediaBrowser.Controller/Library/DtoBuilder.cs
index 22e260547..ee4ce1010 100644
--- a/MediaBrowser.Controller/Library/DtoBuilder.cs
+++ b/MediaBrowser.Controller/Library/DtoBuilder.cs
@@ -295,12 +295,12 @@ namespace MediaBrowser.Controller.Library
if (fields.Contains(ItemFields.Overview))
{
- dto.Overview = item.Overview;
+ dto.OverviewHtml = string.IsNullOrEmpty(item.Overview) ? item.Overview : item.Overview.StripHtml();
}
if (fields.Contains(ItemFields.OverviewHtml))
{
- dto.OverviewHtml = string.IsNullOrEmpty(item.Overview) ? item.Overview : item.Overview.StripHtml();
+ dto.Overview = item.Overview;
}
// If there are no backdrops, indicate what parent has them in case the Ui wants to allow inheritance