Fix metadata merge for BoxSets (#12583)

pull/12676/head
Tim Eisele 7 months ago committed by GitHub
parent 41fb696ef6
commit 9ff7575c85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -54,7 +54,14 @@ namespace MediaBrowser.Providers.BoxSets
if (mergeMetadataSettings)
{
targetItem.LinkedChildren = sourceItem.LinkedChildren;
if (replaceData || targetItem.LinkedChildren.Length == 0)
{
targetItem.LinkedChildren = sourceItem.LinkedChildren;
}
else
{
targetItem.LinkedChildren = sourceItem.LinkedChildren.Concat(targetItem.LinkedChildren).Distinct().ToArray();
}
}
}

Loading…
Cancel
Save