Browse Source

#22 - Need to strip html tags from overviews

LukePulverenti 12 years ago
parent
commit
2af33416a7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MediaBrowser.Controller/Library/DtoBuilder.cs

+ 2 - 2
MediaBrowser.Controller/Library/DtoBuilder.cs

@@ -300,13 +300,13 @@ namespace MediaBrowser.Controller.Library
             {
             {
                 var strippedOverview = string.IsNullOrEmpty(item.Overview) ? item.Overview : item.Overview.StripHtml();
                 var strippedOverview = string.IsNullOrEmpty(item.Overview) ? item.Overview : item.Overview.StripHtml();
 
 
-                if (fields.Contains(ItemFields.Overview))
+                if (hasOverview)
                 {
                 {
                     dto.Overview = strippedOverview;
                     dto.Overview = strippedOverview;
                 }
                 }
 
 
                 // Only supply the html version if there was actually html content
                 // Only supply the html version if there was actually html content
-                if (fields.Contains(ItemFields.OverviewHtml) && !string.Equals(item.Overview, strippedOverview))
+                if (hasHtmlOverview)
                 {
                 {
                     dto.OverviewHtml = item.Overview;
                     dto.OverviewHtml = item.Overview;
                 }
                 }