diff --git a/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs b/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs index c47052570..9f42d57c6 100644 --- a/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs +++ b/src/NzbDrone.Core/Notifications/Xbmc/Xbmc.cs @@ -1,4 +1,4 @@ -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using FluentValidation.Results; @@ -19,7 +19,7 @@ public Xbmc(IXbmcService xbmcService, Logger logger) _logger = logger; } - public override string Link => "http://xbmc.org/"; + public override string Link => "https://kodi.tv/"; public override void OnGrab(GrabMessage grabMessage) { diff --git a/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs b/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs index 5f17a0373..1de11488d 100644 --- a/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs +++ b/src/NzbDrone.Core/Notifications/Xbmc/XbmcJsonApiProxy.cs @@ -59,7 +59,7 @@ public List GetActivePlayers(XbmcSettings settings) public List GetMovies(XbmcSettings settings) { - var response = ProcessRequest(settings, "VideoLibrary.GetMovies", new[] { "file", "imdbnumber" }); + var response = ProcessRequest(settings, "VideoLibrary.GetMovies", new List { "file", "imdbnumber" }); return Json.Deserialize(response).Result.Movies; }