Remove check for wrong metadata saving property

This commit is contained in:
David 2021-01-23 19:05:55 +01:00
parent 828b0be254
commit 18e33b6b2d

View file

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