Skip to content

Commit a0e036a

Browse files
committed
Fix LastfmArtistProvider
1 parent b5d85e3 commit a0e036a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MediaBrowser.Plugins.Lastfm/Providers/LastfmArtistProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private void ProcessArtistData(MusicArtist artist, LastfmArtist data, string mus
108108
}
109109
if (!string.IsNullOrEmpty(data.bio.placeformed) && !artist.LockedFields.Contains(MetadataFields.ProductionLocations))
110110
{
111-
artist.AddProductionLocation(data.bio.placeformed);
111+
artist.ProductionLocations.Add(data.bio.placeformed);
112112
}
113113
}
114114

0 commit comments

Comments
 (0)