mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05:00
Fixed: SABnzbd sorting mode not reflected in heath check
This commit is contained in:
committed by
Mark McDowall
parent
80a8176c58
commit
e62aa5e041
@@ -262,7 +262,7 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
||||
|
||||
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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user