Fix CompositeActivity handling of child output

This commit is contained in:
Sipke Schoorstra 2021-01-04 16:37:13 +01:00
parent 720ad7fe6c
commit 42e5b3d31f

View file

@ -33,7 +33,7 @@ namespace Elsa.Services
IsScheduled = false;
await OnExitAsync(context);
var finishOutput = context.GetInput<FinishOutput>();
var finishOutput = context.Input as FinishOutput;
var outcomes = new List<string> { OutcomeNames.Done };
var output = default(object?);