Fix size retrieval for Aaru

This commit is contained in:
Matt Nadareski
2025-06-09 09:28:04 -04:00
parent b577bbae37
commit 18fc162cd8
2 changed files with 2 additions and 1 deletions

View File

@@ -12,6 +12,7 @@
- Decouple retieval from login
- Simplify Options naming where possible
- Create multi-size icon
- Fix size retrieval for Aaru
### 3.3.1 (2025-05-23)

View File

@@ -97,7 +97,7 @@ namespace MPF.Processors
// Get the individual hash data, as per internal
if (ProcessingTool.GetISOHashValues(datafile, out long size, out var crc32, out var md5, out var sha1))
{
info.SizeAndChecksums!.CRC32 = crc32;
info.SizeAndChecksums!.Size = size;
info.SizeAndChecksums.CRC32 = crc32;
info.SizeAndChecksums.MD5 = md5;
info.SizeAndChecksums.SHA1 = sha1;