Ensure check-only implementations still work

This commit is contained in:
Matt Nadareski
2024-05-21 13:41:53 -04:00
parent 1c1740010d
commit 4a82baa5d1
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
- Remove now-unneeded parameters classes
- Simplify access within processors
- Rename Parameters to ExecutionContext
- Ensure check-only implementations still work
### 3.1.9a (2024-05-21)

View File

@@ -306,7 +306,7 @@ namespace MPF.Core
Func<SubmissionInfo?, (bool?, SubmissionInfo?)>? processUserInfo = null,
SubmissionInfo? seedInfo = null)
{
if (ExecutionContext == null)
if (ExecutionContext == null && Processor == null)
return Result.Failure("Error! Current configuration is not supported!");
resultProgress?.Report(Result.Success("Gathering submission information... please wait!"));