Lower-case SHA-1 for search

This commit is contained in:
Matt Nadareski
2020-06-16 13:57:11 -07:00
parent 02f98c674b
commit 6fedebf2a9

View File

@@ -701,7 +701,7 @@ namespace DICUI.Utilities
{
if (GetISOHashValues(hashData, out long size, out string crc32, out string md5, out string sha1))
{
List<int> newIds = access.ProcessSearch(wc, sha1);
List<int> newIds = access.ProcessSearch(wc, sha1.ToLowerInvariant());
if (info.MatchedIDs.Any())
info.MatchedIDs = info.MatchedIDs.Intersect(newIds).ToList();
else