Fix artist duplicates

This commit is contained in:
Shadowghost
2026-05-09 02:07:26 +02:00
parent 169745fddb
commit b7b405dc83
3 changed files with 213 additions and 4 deletions

View File

@@ -390,7 +390,8 @@ public sealed partial class BaseItemRepository
{
if (filter.UseRawName == true)
{
baseQuery = baseQuery.Where(e => e.Name == filter.Name);
var nameLower = filter.Name.ToLowerInvariant();
baseQuery = baseQuery.Where(e => e.Name!.ToLower() == nameLower);
}
else
{