mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Ensure check-only implementations still work
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
@@ -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!"));
|
||||
|
||||
Reference in New Issue
Block a user