mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
skip queue check and adding new items if download client isn't configured correctly.
This commit is contained in:
@@ -57,6 +57,14 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
|
||||
return false;
|
||||
}
|
||||
|
||||
public bool IsConfigured
|
||||
{
|
||||
get
|
||||
{
|
||||
return !string.IsNullOrWhiteSpace(_configService.NzbgetHost) && _configService.NzbgetPort != 0;
|
||||
}
|
||||
}
|
||||
|
||||
public virtual IEnumerable<QueueItem> GetQueue()
|
||||
{
|
||||
var command = new JsonRequest
|
||||
|
||||
Reference in New Issue
Block a user