Browse Source

Set ProductionLocations instead of Tags (#11984)

Tim Eisele 1 year ago
parent
commit
279cba008b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Providers/Manager/MetadataService.cs

+ 1 - 1
MediaBrowser.Providers/Manager/MetadataService.cs

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