Skip to content

Commit

Permalink
Fixed function call
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenHoeffler committed Dec 13, 2024
1 parent 5a10103 commit 291a146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/lib/actions/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async function processAction(msg, cfg, snapshot, incomingMessageHeaders, tokenDa
let body = msg.data;

if (cfg && cfg.additionalParameters) {
body = putAdditionalParamsInBody(this, action, body, cfg.additionalParameters)
body = putAdditionalParamsInBody.call(this, action, body, cfg.additionalParameters)
}

mapFieldNames(body);
Expand Down

0 comments on commit 291a146

Please sign in to comment.