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