mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-22 22:43:00 -05:00
parent
2aa39226c6
commit
e282b05b8f
@ -186,6 +186,11 @@ internal class MigrateLibraryDb : IDatabaseMigrationRoutine
|
||||
foreach (SqliteDataReader dto in connection.Query(itemValueQuery))
|
||||
{
|
||||
var itemId = dto.GetGuid(0);
|
||||
if (!baseItemIds.Contains(itemId))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
var entity = GetItemValue(dto);
|
||||
var key = ((int)entity.Type, entity.Value);
|
||||
if (!localItems.TryGetValue(key, out var existing))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user