mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-15 04:00:25 +01:00
update ShortOverview
This commit is contained in:
@@ -394,17 +394,6 @@ namespace MediaBrowser.XbmcMetadata.Parsers
|
||||
break;
|
||||
}
|
||||
|
||||
case "outline":
|
||||
{
|
||||
var val = reader.ReadElementContentAsString();
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(val))
|
||||
{
|
||||
item.ShortOverview = val;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case "biography":
|
||||
case "plot":
|
||||
case "review":
|
||||
|
||||
@@ -457,7 +457,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
||||
|
||||
if (item is Video)
|
||||
{
|
||||
var outline = (item.ShortOverview ?? string.Empty)
|
||||
var outline = (item.Tagline ?? item.Overview ?? string.Empty)
|
||||
.StripHtml()
|
||||
.Replace(""", "'");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user