mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
Add People Dedup and multiple progress fixes (#14848)
This commit is contained in:
@@ -337,9 +337,9 @@ internal class MigrateLibraryDb : IDatabaseMigrationRoutine
|
||||
}
|
||||
|
||||
var entity = GetPerson(reader);
|
||||
if (!peopleCache.TryGetValue(entity.Name, out var personCache))
|
||||
if (!peopleCache.TryGetValue(entity.Name + "|" + entity.PersonType, out var personCache))
|
||||
{
|
||||
peopleCache[entity.Name] = personCache = (entity, []);
|
||||
peopleCache[entity.Name + "|" + entity.PersonType] = personCache = (entity, []);
|
||||
}
|
||||
|
||||
if (reader.TryGetString(2, out var role))
|
||||
|
||||
Reference in New Issue
Block a user