mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04: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 (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";
|
status.SortingMode = "TV";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user