#22 - Need to strip html tags from overviews

This commit is contained in:
LukePulverenti 2013-03-12 18:53:04 -04:00
parent e5cd49e567
commit 37d27ec0c3

View file

@ -295,12 +295,12 @@ namespace MediaBrowser.Controller.Library
if (fields.Contains(ItemFields.Overview)) 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)) 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 // If there are no backdrops, indicate what parent has them in case the Ui wants to allow inheritance