Apply review suggestion

This commit is contained in:
Shadowghost 2024-05-30 09:21:23 +02:00
parent b7d6bedbbb
commit 4746c88633

View File

@ -1023,7 +1023,7 @@ namespace MediaBrowser.Providers.Manager
{ {
target.Studios = source.Studios; target.Studios = source.Studios;
} }
else if (source.Studios.Length >= 0) else
{ {
target.Studios = target.Studios.Concat(source.Studios).Distinct().ToArray(); target.Studios = target.Studios.Concat(source.Studios).Distinct().ToArray();
} }
@ -1035,7 +1035,7 @@ namespace MediaBrowser.Providers.Manager
{ {
target.Tags = source.Tags; target.Tags = source.Tags;
} }
else if (source.Tags.Length >= 0) else
{ {
target.Tags = target.Tags.Concat(source.Tags).Distinct().ToArray(); target.Tags = target.Tags.Concat(source.Tags).Distinct().ToArray();
} }
@ -1047,7 +1047,7 @@ namespace MediaBrowser.Providers.Manager
{ {
target.ProductionLocations = source.ProductionLocations; target.ProductionLocations = source.ProductionLocations;
} }
else if (source.ProductionLocations.Length >= 0) else
{ {
target.Tags = target.ProductionLocations.Concat(source.ProductionLocations).Distinct().ToArray(); target.Tags = target.ProductionLocations.Concat(source.ProductionLocations).Distinct().ToArray();
} }
@ -1077,7 +1077,7 @@ namespace MediaBrowser.Providers.Manager
{ {
target.RemoteTrailers = source.RemoteTrailers; target.RemoteTrailers = source.RemoteTrailers;
} }
else if (source.CriticRating.HasValue) else
{ {
target.RemoteTrailers = target.RemoteTrailers.Concat(source.RemoteTrailers).Distinct().ToArray(); target.RemoteTrailers = target.RemoteTrailers.Concat(source.RemoteTrailers).Distinct().ToArray();
} }