beyond-hd-api: fix flags count condition (#14191)

This commit is contained in:
Bogdan
2023-03-24 20:03:21 +02:00
committed by GitHub
parent fc4f4eaf23
commit db39ec3229

View File

@@ -206,7 +206,7 @@ namespace Jackett.Common.Indexers
features.Add("HLG"); features.Add("HLG");
} }
if (features.Any()) if (features.Count > 1)
{ {
title += $" ({string.Join(" / ", features)})"; title += $" ({string.Join(" / ", features)})";
} }