Fix missing info in Aaru

This commit is contained in:
Matt Nadareski
2022-10-12 21:27:58 -07:00
parent 89edf9a8f6
commit b8ac1bc9d4
2 changed files with 5 additions and 0 deletions

View File

@@ -139,6 +139,7 @@
- Enable separated protection info output by default
- Try adding MPF logs to zip
- Create MPF log helper and filter for deletion
- Fix missing info in Aaru
### 2.3 (2022-02-05)
- Start overhauling Redump information pulling, again

View File

@@ -7,6 +7,7 @@ using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Schema;
using System.Xml.Serialization;
using MPF.Core.Converters;
using MPF.Core.Data;
using MPF.CueSheets;
using RedumpLib.Data;
@@ -196,6 +197,9 @@ namespace MPF.Modules.Aaru
// TODO: Fill in submission info specifics for Aaru
string outputDirectory = Path.GetDirectoryName(basePath);
// TODO: Determine if there's an Aaru version anywhere
info.DumpingInfo.DumpingProgram = EnumConverter.LongName(this.InternalProgram);
// Deserialize the sidecar, if possible
var sidecar = GenerateSidecar(basePath + ".cicm.xml");