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 48a825f commit c6b751cCopy full SHA for c6b751c
src/nodes/send/send.js
@@ -72,9 +72,10 @@ module.exports = function(RED) {
72
73
const { receive } = this.config;
74
75
- const messageMetadata = receive
+ const messageMetadata = receive || msg.messageMetadata
76
? {
77
- postbackNode: this._path,
+ postbackNode: receive ? this._path : undefined,
78
+ ...msg.messageMetadata
79
}
80
: undefined;
81
0 commit comments