mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix another issue with Postmark Trigger node
This commit is contained in:
@@ -124,11 +124,17 @@ export class PostmarkTrigger implements INodeType {
|
|||||||
const webhookData = this.getWorkflowStaticData('node');
|
const webhookData = this.getWorkflowStaticData('node');
|
||||||
const webhookUrl = this.getNodeWebhookUrl('default');
|
const webhookUrl = this.getNodeWebhookUrl('default');
|
||||||
const events = this.getNodeParameter('events') as string[];
|
const events = this.getNodeParameter('events') as string[];
|
||||||
if (this.getNodeParameter('includeContent') as boolean) {
|
|
||||||
events.push('includeContent');
|
if (events.includes('bounce') || events.includes('spamComplaint')) {
|
||||||
|
if (this.getNodeParameter('includeContent') as boolean) {
|
||||||
|
events.push('includeContent');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (events.includes('open') && this.getNodeParameter('firstOpen') as boolean) {
|
|
||||||
events.push('firstOpen');
|
if (events.includes('open')) {
|
||||||
|
if (this.getNodeParameter('firstOpen') as boolean) {
|
||||||
|
events.push('firstOpen');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get all webhooks
|
// Get all webhooks
|
||||||
|
|||||||
Reference in New Issue
Block a user