mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Fixed: Testing SABnzbd when no categories are configured
(cherry picked from commit 0e31281828c737e3f6eecbb870960194888a970a)
This commit is contained in:
parent
39c3993759
commit
4eb6a15bc7
1 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using NzbDrone.Common.Disk;
|
using NzbDrone.Common.Disk;
|
||||||
using NzbDrone.Core.Download.Clients.Sabnzbd.JsonConverters;
|
using NzbDrone.Core.Download.Clients.Sabnzbd.JsonConverters;
|
||||||
|
@ -7,10 +7,14 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||||
{
|
{
|
||||||
public class SabnzbdConfig
|
public class SabnzbdConfig
|
||||||
{
|
{
|
||||||
|
public SabnzbdConfig()
|
||||||
|
{
|
||||||
|
Categories = new List<SabnzbdCategory>();
|
||||||
|
Servers = new List<object>();
|
||||||
|
}
|
||||||
|
|
||||||
public SabnzbdConfigMisc Misc { get; set; }
|
public SabnzbdConfigMisc Misc { get; set; }
|
||||||
|
|
||||||
public List<SabnzbdCategory> Categories { get; set; }
|
public List<SabnzbdCategory> Categories { get; set; }
|
||||||
|
|
||||||
public List<object> Servers { get; set; }
|
public List<object> Servers { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue