Fix fully matching when multiple matches found (#759)

Co-authored-by: Matt Nadareski <mnadareski@outlook.com>
This commit is contained in:
Deterous
2024-11-18 09:33:09 +09:00
committed by GitHub
parent 595cd0d60f
commit d44798b27c
2 changed files with 2 additions and 1 deletions

View File

@@ -5,6 +5,7 @@
- Add .NET 9 to target frameworks
- Be smarter about some data types
- Consolidate parameter string splitting
- Fix fully matching when multiple matches found
### 3.2.3 (2024-11-06)

View File

@@ -238,7 +238,7 @@ namespace MPF.Frontend.Tools
foundIdSets.Add(foundIds?.ToArray() ?? []);
// Ensure that all tracks are found
allFound &= (foundIds != null && foundIds.Count == 1);
allFound &= (foundIds != null && foundIds.Count >= 1);
}
// If all tracks were found, check if there are any fully-matched IDs