Fix equality from missing return statement

This commit is contained in:
Matt Nadareski
2024-03-04 22:18:14 -05:00
parent 9bfcea5c04
commit b12d221fbf

View File

@@ -255,6 +255,7 @@ namespace SabreTools.Core
// If we have a file that has no known size, rely on the hashes only
if (selfSize == null && self.HashMatch(other))
return true;
// If we get a partial match
if (selfSize == otherSize && self.HashMatch(other))