From 84f5a34625d864fc60e597b7b8cf181dd18147ab Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 18 Oct 2020 17:47:37 -0700 Subject: [PATCH] Kodi GetMovies fails due to Parameter Type --- src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs b/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs index 4167a5f7b..3d3bd5b19 100644 --- a/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs +++ b/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs @@ -59,7 +59,7 @@ namespace NzbDrone.Core.Notifications.Xbmc public List GetArtist(XbmcSettings settings) { - var response = ProcessRequest(settings, "AudioLibrary.GetArtists", new[] { "properties", "musicbrainzartistid" }); + var response = ProcessRequest(settings, "AudioLibrary.GetArtists", new List { "properties", "musicbrainzartistid" }); return Json.Deserialize(response).Result.Artists; }