1
0
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:
Stevie Robinson
2025-02-12 04:32:36 +01:00
committed by Mark McDowall
parent 80a8176c58
commit e62aa5e041

View File

@@ -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";
}