skip queue check and adding new items if download client isn't configured correctly.

This commit is contained in:
kay.one 2013-07-30 22:49:41 -07:00
commit a5bb99367e
8 changed files with 73 additions and 5 deletions

View file

@ -68,6 +68,14 @@ namespace NzbDrone.Core.Download.Clients
}
}
public bool IsConfigured
{
get
{
return !string.IsNullOrWhiteSpace(_configService.PneumaticFolder);
}
}
public IEnumerable<QueueItem> GetQueue()
{
return new QueueItem[0];