mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-26 02:12:39 +01:00
Dedupe titles to avoid similar release names for AB
This commit is contained in:
parent
af86a6d34e
commit
3bf9b4f90f
1 changed files with 1 additions and 1 deletions
|
|
@ -339,7 +339,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
|||
mainTitle = seriesName;
|
||||
}
|
||||
|
||||
var synonyms = new HashSet<string>
|
||||
var synonyms = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
mainTitle
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue