From 22f6f39a91ebaaacf2995f916b3d5b47a7c78bbe Mon Sep 17 00:00:00 2001 From: Deterous <138427222+Deterous@users.noreply.github.com> Date: Fri, 26 Jul 2024 23:11:39 +0900 Subject: [PATCH] Enable loading seed JSON (#731) * Enable loading seed JSON * Safer function call --- MPF.Check/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPF.Check/Program.cs b/MPF.Check/Program.cs index 552c9b85..c20b0185 100644 --- a/MPF.Check/Program.cs +++ b/MPF.Check/Program.cs @@ -87,7 +87,7 @@ namespace MPF.Check var env = new DumpEnvironment(options, filepath, drive, knownSystem, mediaType, internalProgram: null, parameters: null); // Finally, attempt to do the output dance - var result = env.VerifyAndSaveDumpOutput(resultProgress, protectionProgress).GetAwaiter().GetResult(); + var result = env.VerifyAndSaveDumpOutput(resultProgress, protectionProgress, seedInfo: opts.Seed).GetAwaiter().GetResult(); Console.WriteLine(result.Message); } }