mirror of
https://github.com/Radarr/Radarr
synced 2026-01-03 22:25:00 +01:00
parent
7d5236de21
commit
1e783bfe07
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ private TSpec Get<TSpec>(Movie movie, bool userInvokedSearch, bool interactiveSe
|
|||
queryTranslations.Add(translation.Title);
|
||||
}
|
||||
|
||||
spec.SceneTitles = queryTranslations.Distinct().Where(t => t.IsNotNullOrWhiteSpace()).ToList();
|
||||
spec.SceneTitles = queryTranslations.Where(t => t.IsNotNullOrWhiteSpace()).Distinct(StringComparer.InvariantCultureIgnoreCase).ToList();
|
||||
|
||||
return spec;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue