Set ProductionLocations instead of Tags (#11984)

This commit is contained in:
Tim Eisele 2024-06-06 14:47:15 +02:00 committed by GitHub
parent 2b5d458456
commit 279cba008b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1057,7 +1057,7 @@ namespace MediaBrowser.Providers.Manager
}
else
{
target.Tags = target.ProductionLocations.Concat(source.ProductionLocations).Distinct().ToArray();
target.ProductionLocations = target.ProductionLocations.Concat(source.ProductionLocations).Distinct().ToArray();
}
}