mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Fix issue with Postmark Trigger node
This commit is contained in:
@@ -127,7 +127,7 @@ export class PostmarkTrigger implements INodeType {
|
|||||||
if (this.getNodeParameter('includeContent') as boolean) {
|
if (this.getNodeParameter('includeContent') as boolean) {
|
||||||
events.push('includeContent');
|
events.push('includeContent');
|
||||||
}
|
}
|
||||||
if (this.getNodeParameter('firstOpen') as boolean) {
|
if (events.includes('open') && this.getNodeParameter('firstOpen') as boolean) {
|
||||||
events.push('firstOpen');
|
events.push('firstOpen');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user