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 <shireen@n8n.io>
  • Loading branch information
Joffcom and ShireenMissi authored Aug 16, 2024
1 parent 90a5fcc commit 9d6ad88
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 9d6ad88

Please sign in to comment.