mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix issue with IF&Switch node for undefined expressions #1099
This commit is contained in:
@@ -841,7 +841,7 @@ export class ActiveCampaign implements INodeType {
|
||||
source: this.getNodeParameter('source', i) as string,
|
||||
email: this.getNodeParameter('email', i) as string,
|
||||
totalPrice: this.getNodeParameter('totalPrice', i) as number,
|
||||
currency: this.getNodeParameter('currency', i).toString().toUpperCase() as string,
|
||||
currency: this.getNodeParameter('currency', i)!.toString().toUpperCase() as string,
|
||||
externalCreatedDate: this.getNodeParameter('externalCreatedDate', i) as string,
|
||||
connectionid: this.getNodeParameter('connectionid', i) as number,
|
||||
customerid: this.getNodeParameter('customerid', i) as number,
|
||||
|
||||
Reference in New Issue
Block a user