Explorar el Código

#22 - Need to strip html tags from overviews

LukePulverenti hace 12 años
padre
commit
37d27ec0c3
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      MediaBrowser.Controller/Library/DtoBuilder.cs

+ 2 - 2
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