mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 05:17:28 -08:00
⚡ Fix issue with Postmark Trigger node
This commit is contained in:
parent
397132688e
commit
5cb1837ea9
|
@ -127,7 +127,7 @@ export class PostmarkTrigger implements INodeType {
|
|||
if (this.getNodeParameter('includeContent') as boolean) {
|
||||
events.push('includeContent');
|
||||
}
|
||||
if (this.getNodeParameter('firstOpen') as boolean) {
|
||||
if (events.includes('open') && this.getNodeParameter('firstOpen') as boolean) {
|
||||
events.push('firstOpen');
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue