mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
Fixed: Testing SABnzbd when no categories are configured
(cherry picked from commit 0e31281828c737e3f6eecbb870960194888a970a)
This commit is contained in:
committed by
Robin Dadswell
parent
488a7d183e
commit
6c01e8c91f
@@ -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; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user