1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-17 21:17:50 +02:00

Fixed XBMC CleanLibrary

This commit is contained in:
Mark McDowall 2011-03-17 13:01:21 -07:00
parent 636f352599
commit b2b4423c92

View File

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