Skip to content

Commit

Permalink
fix: integer only (#1670)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanlr authored Nov 27, 2024
1 parent 7269665 commit 706f383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/jobs/brevoContacts/sendContactsToBrevo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const postToBrevo = async (contacts: IBrevoContact[]) => {
})

requestContactImport.fileBody = fileBody
requestContactImport.listIds = [config.smtp.brevoContactListId]
requestContactImport.listIds = [parseInt(config.smtp.brevoContactListId!)]
requestContactImport.updateExistingContacts = true
requestContactImport.emptyContactsAttributes = true

Expand Down

0 comments on commit 706f383

Please sign in to comment.