Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/18e33b6b2d58a2f822b10f126639610ed598f5a5?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Remove check for wrong metadata saving property

pull/5088/head
David 4 years ago
parent 828b0be254
commit 18e33b6b2d

@ -60,17 +60,7 @@ namespace MediaBrowser.XbmcMetadata
private void SaveMetadataForItem(BaseItem item, ItemUpdateType updateReason) private void SaveMetadataForItem(BaseItem item, ItemUpdateType updateReason)
{ {
if (!item.IsFileProtocol) if (!item.IsFileProtocol || !item.SupportsLocalMetadata)
{
return;
}
if (!item.SupportsLocalMetadata)
{
return;
}
if (!item.IsSaveLocalMetadataEnabled())
{ {
return; return;
} }

Loading…
Cancel
Save