mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Chat Trigger Node): Fix auth in "Embedded Chat" mode (#10734)
This commit is contained in:
@@ -460,7 +460,6 @@ export class ChatTrigger extends Node {
|
||||
const mode = ctx.getMode() === 'manual' ? 'test' : 'production';
|
||||
const bodyData = ctx.getBodyData() ?? {};
|
||||
|
||||
if (nodeMode === 'hostedChat') {
|
||||
try {
|
||||
await validateAuth(ctx);
|
||||
} catch (error) {
|
||||
@@ -473,7 +472,7 @@ export class ChatTrigger extends Node {
|
||||
}
|
||||
throw error;
|
||||
}
|
||||
|
||||
if (nodeMode === 'hostedChat') {
|
||||
// Show the chat on GET request
|
||||
if (webhookName === 'setup') {
|
||||
const webhookUrlRaw = ctx.getNodeWebhookUrl('default') as string;
|
||||
|
||||
Reference in New Issue
Block a user