Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c352c4ac40538c3e3102f8fe804217ce2541c872 You should set ROOT_URL correctly, otherwise the web may not work correctly.

update BaseXmlSaver

pull/702/head
Luke Pulverenti 9 years ago
parent 21df06bba9
commit c352c4ac40

@ -541,29 +541,29 @@ namespace MediaBrowser.LocalMetadata.Savers
// builder.Append("</Studios>");
//}
//if (item.Tags.Count > 0)
//{
// builder.Append("<Tags>");
if (item.Tags.Count > 0)
{
writer.WriteStartElement("Tags");
// foreach (var tag in item.Tags)
// {
// builder.Append("<Tag>" + SecurityElement.Escape(tag) + "</Tag>");
// }
foreach (var tag in item.Tags)
{
writer.WriteElementString("Tag", tag);
}
// builder.Append("</Tags>");
//}
writer.WriteEndElement();
}
//if (item.Keywords.Count > 0)
//{
// builder.Append("<PlotKeywords>");
if (item.Keywords.Count > 0)
{
writer.WriteStartElement("PlotKeywords");
// foreach (var tag in item.Keywords)
// {
// builder.Append("<PlotKeyword>" + SecurityElement.Escape(tag) + "</PlotKeyword>");
// }
foreach (var tag in item.Keywords)
{
writer.WriteElementString("PlotKeyword", tag);
}
// builder.Append("</PlotKeywords>");
//}
writer.WriteEndElement();
}
//var people = libraryManager.GetPeople(item);

Loading…
Cancel
Save