Address review comments

Co-authored-by: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Joe Rogers
2022-01-16 13:20:15 +01:00
parent 62dc4a79ff
commit f87e780fb5
2 changed files with 9 additions and 7 deletions

View File

@@ -1071,10 +1071,14 @@ namespace MediaBrowser.Providers.Manager
var key = id.Key;
// Don't replace existing Id's.
if (replaceData || !target.ProviderIds.ContainsKey(key))
if (replaceData)
{
target.ProviderIds[key] = id.Value;
}
else
{
target.ProviderIds.TryAdd(key, id.Value);
}
}
MergeAlbumArtist(source, target, replaceData);
@@ -1120,10 +1124,7 @@ namespace MediaBrowser.Providers.Manager
{
foreach (var providerId in personInSource.ProviderIds)
{
if (!person.ProviderIds.ContainsKey(providerId.Key))
{
person.ProviderIds[providerId.Key] = providerId.Value;
}
person.ProviderIds.TryAdd(providerId.Key, providerId.Value);
}
if (string.IsNullOrWhiteSpace(person.ImageUrl))