mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-24 14:11:55 +02:00
Fixed: SABnzbd sorting mode not reflected in heath check
This commit is contained in:
parent
80a8176c58
commit
e62aa5e041
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ public override DownloadClientInfo GetStatus()
|
|||
|
||||
if (category != null)
|
||||
{
|
||||
if (config.Misc.enable_tv_sorting && ContainsCategory(config.Misc.tv_categories, Settings.TvCategory))
|
||||
if ((config.Misc.enable_tv_sorting && ContainsCategory(config.Misc.tv_categories, Settings.TvCategory)) || config.Sorters.Any(s => s.is_active && ContainsCategory(s.sort_cats, Settings.TvCategory)))
|
||||
{
|
||||
status.SortingMode = "TV";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue