mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
beyond-hd-api: fix flags count condition (#14191)
This commit is contained in:
@@ -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)})";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user