This commit is contained in:
Matt Nadareski
2026-02-18 07:55:15 -05:00
parent 782fcd0253
commit 8625bc4519
2 changed files with 7 additions and 0 deletions

View File

@@ -40,6 +40,7 @@
- Add GP-Install to packer filters
- Update Aaru to 5.4.2 LTS
- Use prefixing protection scan output
- Print error when redump is down
### 3.6.0 (2025-11-28)

View File

@@ -272,11 +272,17 @@ namespace MPF.Frontend.Tools
return false;
}
else if (foundIds.Count == 0)
{
resultProgress?.Report(ResultEventArgs.Failure($"No matches found for {sha1}"));
}
else if (foundIds.Count == 1)
{
resultProgress?.Report(ResultEventArgs.Success($"Single match found for {sha1}"));
}
else
{
resultProgress?.Report(ResultEventArgs.Success($"Multiple matches found for {sha1}"));
}
// Add the found IDs to the map
foundIdSets.Add(foundIds?.ToArray() ?? []);