mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Don't write tagline in <outline> in nfo files
This commit is contained in:
parent
828b0be254
commit
b2f2126edd
@ -450,15 +450,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
|||||||
writer.WriteElementString("plot", overview);
|
writer.WriteElementString("plot", overview);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (item is Video)
|
if (!(item is Video))
|
||||||
{
|
|
||||||
var outline = (item.Tagline ?? string.Empty)
|
|
||||||
.StripHtml()
|
|
||||||
.Replace(""", "'", StringComparison.Ordinal);
|
|
||||||
|
|
||||||
writer.WriteElementString("outline", outline);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
writer.WriteElementString("outline", overview);
|
writer.WriteElementString("outline", overview);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user