mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-01 13:28:27 +01:00
Address review comments
Co-authored-by: Bond-009 <bond.009@outlook.com>
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user