Minor walkoff shuffle-shared mapping fix

This commit is contained in:
Frikky
2024-11-07 17:36:12 +01:00
parent 38477cc1e7
commit ab7b65e756
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -333,7 +333,7 @@ func handleGetWorkflowqueue(resp http.ResponseWriter, request *http.Request) {
}
env.Checkin = timeNow
err = shuffle.SetEnvironment(ctx, &env)
err = shuffle.SetEnvironment(ctx, env)
if err != nil {
log.Printf("[ERROR] Failed updating environment: %s", err)
}
@@ -668,7 +668,8 @@ func handleGetStreamResults(resp http.ResponseWriter, request *http.Request) {
Sharing: workflowExecution.Workflow.Sharing,
Description: workflowExecution.Workflow.Description,
InputQuestions: workflowExecution.Workflow.InputQuestions,
InputMarkdown: workflowExecution.Workflow.InputMarkdown,
FormControl: workflowExecution.Workflow.FormControl,
}
workflowExecution.Results = []shuffle.ActionResult{}