#22 - Need to strip html tags from overviews

This commit is contained in:
LukePulverenti 2013-03-14 21:40:24 -04:00
parent 65303c8816
commit 2af33416a7

View file

@ -300,13 +300,13 @@ namespace MediaBrowser.Controller.Library
{
var strippedOverview = string.IsNullOrEmpty(item.Overview) ? item.Overview : item.Overview.StripHtml();
if (fields.Contains(ItemFields.Overview))
if (hasOverview)
{
dto.Overview = strippedOverview;
}
// 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;
}