From db39ec3229150d0e43d7ebb7fd697415941bc9aa Mon Sep 17 00:00:00 2001 From: Bogdan Date: Fri, 24 Mar 2023 20:03:21 +0200 Subject: [PATCH] beyond-hd-api: fix flags count condition (#14191) --- src/Jackett.Common/Indexers/BeyondHDAPI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/BeyondHDAPI.cs b/src/Jackett.Common/Indexers/BeyondHDAPI.cs index 3825ab56c..ec4f80be8 100644 --- a/src/Jackett.Common/Indexers/BeyondHDAPI.cs +++ b/src/Jackett.Common/Indexers/BeyondHDAPI.cs @@ -206,7 +206,7 @@ namespace Jackett.Common.Indexers features.Add("HLG"); } - if (features.Any()) + if (features.Count > 1) { title += $" ({string.Join(" / ", features)})"; }