diff --git a/CHANGELIST.md b/CHANGELIST.md index 8eb3bb01..a5cecf70 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -28,6 +28,7 @@ - Fix tabs in Games and Videos boxes - Make fully and partially matching IDs more apparent - Add write offset as read-only field +- Explicitly clear list, just in case ### 2.3 (2022-02-05) - Start overhauling Redump information pulling, again diff --git a/MPF.Library/InfoTool.cs b/MPF.Library/InfoTool.cs index 4ce4142c..d3fb7e60 100644 --- a/MPF.Library/InfoTool.cs +++ b/MPF.Library/InfoTool.cs @@ -1642,6 +1642,11 @@ namespace MPF.Library else fullyMatchedIDs = fullyMatchedIDs.Intersect(foundIds).ToList(); } + // If no tracks were found, remove all fully matched IDs found so far + else + { + fullyMatchedIDs = new List(); + } } // Make sure we only have unique IDs