mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
skip queue check and adding new items if download client isn't configured correctly.
This commit is contained in:
parent
1eb278c7f6
commit
a5bb99367e
8 changed files with 73 additions and 5 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue