Backport pull request #11984 from jellyfin/release-10.9.z

Set ProductionLocations instead of Tags

Original-merge: 279cba008b

Merged-by: crobibero <cody@robibe.ro>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
Shadowghost
2024-06-06 14:30:39 -04:00
committed by Joshua M. Boniface
parent 0c1c41aeaf
commit 4015ac78cd

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();
}
}