We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5707f56 commit 63fc362Copy full SHA for 63fc362
src/services/ProcessorService.js
@@ -25,7 +25,7 @@ async function updateTaskInformation (challengeId, memberId) {
25
challengeTaskInformation.isAssigned = false
26
challengeTaskInformation.memberId = null
27
}
28
- await helper.patchRequest(`${config.CHALLENGE_API_URL}/${challengeId}`, challengeTaskInformation, m2mToken)
+ await helper.patchRequest(`${config.CHALLENGE_API_URL}/${challengeId}`, { task: challengeTaskInformation }, m2mToken)
29
logger.info(`Task updated for id ${challengeId} ${JSON.stringify(challengeTaskInformation)}!`)
30
31
0 commit comments