Skip to content

Commit

Permalink
error in migration check (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
Madevil committed Sep 23, 2020
1 parent 84121f6 commit b46680b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core_Sideloader/UniversalAutoResolver/Core.UAR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ internal static void MigrateData(ResolveInfo extResolve, ChaListDefine.CategoryN
return;
}

foreach (var migrationInfo in migrationInfoList.Where(x => x.IDOld == extResolve.Slot && categoryNo == extResolve.CategoryNo))
foreach (var migrationInfo in migrationInfoList.Where(x => x.IDOld == extResolve.Slot && x.Category == extResolve.CategoryNo))
{
if (Sideloader.GetManifest(migrationInfo.GUIDNew) != null)
{
Expand Down

0 comments on commit b46680b

Please sign in to comment.