Kodi GetMovies fails due to Parameter Type

This commit is contained in:
Mark McDowall 2020-10-18 17:47:37 -07:00 committed by Qstick
parent 74a0574c90
commit 84f5a34625
1 changed files with 1 additions and 1 deletions

View File

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