Skip to content

Commit

Permalink
fix(Respond to Webhook Node): Fix issue preventing the chat trigger f…
Browse files Browse the repository at this point in the history
…rom working (#9886)

Co-authored-by: Shireen Missi <[email protected]>
  • Loading branch information
2 people authored and riascho committed Aug 26, 2024
1 parent 4d6915a commit dd3518f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,11 @@ export class RespondToWebhook implements INodeType {
const items = this.getInputData();
const nodeVersion = this.getNode().typeVersion;

const WEBHOOK_NODE_TYPES = ['n8n-nodes-base.webhook', 'n8n-nodes-base.formTrigger'];
const WEBHOOK_NODE_TYPES = [
'n8n-nodes-base.webhook',
'n8n-nodes-base.formTrigger',
'@n8n/n8n-nodes-langchain.chatTrigger',
];

try {
if (nodeVersion >= 1.1) {
Expand Down

0 comments on commit dd3518f

Please sign in to comment.