mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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) {
|
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');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue