We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e25b7e5 commit a371228Copy full SHA for a371228
MPF.ExecutionContexts/Redumper/ExecutionContext.cs
@@ -244,7 +244,8 @@ public override string GenerateParameters()
244
public override bool IsDumpingCommand()
245
{
246
// `dump` command does not provide hashes so will error out after dump if run via MPF
247
- return ModeValues?.Contains(CommandStrings.Disc) == true;
+ return ModeValues?.Contains(CommandStrings.None) == true
248
+ || ModeValues?.Contains(CommandStrings.Disc) == true;
249
}
250
251
/// <inheritdoc/>
0 commit comments