Inherit web links for Series and bug fixes (#4152)

This commit is contained in:
Fesaa
2025-10-25 21:35:53 +02:00
committed by GitHub
parent 935ed96416
commit 76f9e085eb
31 changed files with 4284 additions and 119 deletions
+2 -1
View File
@@ -396,7 +396,8 @@ public class PersonRepository : IPersonRepository
public async Task<bool> AnyAliasExist(string alias)
{
return await _context.PersonAlias.AnyAsync(pa => pa.NormalizedAlias == alias.ToNormalized());
var normalizedAlias = alias.ToNormalized();
return await _context.PersonAlias.AnyAsync(pa => pa.NormalizedAlias == normalizedAlias);
}