mirror of https://github.com/lidarr/Lidarr
Kodi GetMovies fails due to Parameter Type
This commit is contained in:
parent
74a0574c90
commit
84f5a34625
|
@ -59,7 +59,7 @@ namespace NzbDrone.Core.Notifications.Xbmc
|
|||
|
||||
public List<KodiArtist> GetArtist(XbmcSettings settings)
|
||||
{
|
||||
var response = ProcessRequest(settings, "AudioLibrary.GetArtists", new[] { "properties", "musicbrainzartistid" });
|
||||
var response = ProcessRequest(settings, "AudioLibrary.GetArtists", new List<string> { "properties", "musicbrainzartistid" });
|
||||
|
||||
return Json.Deserialize<ArtistResponse>(response).Result.Artists;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue