mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-25 15:55:06 -07:00
Fix indexer add due to null categories in Newznab presets
This commit is contained in:
parent
c7be207543
commit
bd7c302dd4
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ namespace NzbDrone.Core.Indexers.Newznab
|
||||||
{
|
{
|
||||||
var settings = new NewznabSettings { BaseUrl = url };
|
var settings = new NewznabSettings { BaseUrl = url };
|
||||||
|
|
||||||
if (categories.Any())
|
if (categories != null)
|
||||||
{
|
{
|
||||||
settings.Categories = categories;
|
settings.Categories = categories;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue