Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/b2b4423c92bcadd61a8cb91e80060db178e007d7 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed XBMC CleanLibrary

pull/6/head
Mark McDowall 14 years ago
parent 636f352599
commit b2b4423c92

@ -75,7 +75,7 @@ namespace NzbDrone.Core.Providers
foreach (var host in _configProvider.GetValue("XbmcHosts", "localhost:80", true).Split(','))
{
Logger.Trace("Sending DB Clean Request to XBMC Host: {0}", host);
var command = String.Format("ExecBuiltIn(CleanLibrary(database) )");
var command = String.Format("ExecBuiltIn(CleanLibrary(video))");
SendCommand(host, command);
}
}

Loading…
Cancel
Save