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