Skip to content

Commit

Permalink
fix(call-service): Fix for having undefined output location and type
Browse files Browse the repository at this point in the history
  • Loading branch information
zachowj committed Apr 3, 2019
1 parent 9305c7d commit 3a0d8b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nodes/call-service/call-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ module.exports = function(RED) {

this.setContextValue(
msgPayload,
config.output_location_type,
config.output_location,
config.output_location_type || 'msg',
config.output_location || 'payload',
message
);
this.send(message);
Expand Down

0 comments on commit 3a0d8b0

Please sign in to comment.