Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
node_crisp
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
web
node_crisp
Commits
e3ccc53a
Commit
e3ccc53a
authored
Aug 12, 2021
by
Gabriel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quita operador de optional chaining
parent
7df77577
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sendinblue.js
endpoints/sendinblue.js
+4
-4
No files found.
endpoints/sendinblue.js
View file @
e3ccc53a
...
...
@@ -18,7 +18,7 @@ async function saveContactToList(email, nombres, apellidos, sms, listId){
addContactToList
(
email
,
listId
);
})
.
catch
(
function
(
error
)
{
console
.
log
(
`Error al crear/actualizar usuario en sendinblue:
${
JSON
.
stringify
(
error
?.
response
?
.
data
)}
`);
console
.
log
(
`Error al crear/actualizar usuario en sendinblue:
${
JSON
.
stringify
(
error
.
response
.
data
)}
`
);
});
}
...
...
@@ -39,8 +39,8 @@ async function createOrUpdateContact(email, nombres, apellidos, sms){
return
response
.
data
;
})
.
catch
(
async
function
(
error
)
{
if(error
?.response?.data?
.code === ERROR_CODE_DUPLICATE_PARAMETER){
console.log(error
?.response?
.data)
if
(
error
.
response
.
data
.
code
===
ERROR_CODE_DUPLICATE_PARAMETER
){
console
.
log
(
error
.
response
.
data
)
return
await
sendinblueClient
.
put
(
encodeURI
(
`/contacts/
${
email
}
`
),
{
"attributes"
:
{
"NOMBRE"
:
nombres
,
...
...
@@ -64,7 +64,7 @@ async function addContactToList(email, listId){
return
response
.
data
;
})
.
catch
(
async
function
(
error
)
{
console.log(`
Error
al
agregar
al
usuario
$
{
email
}
a
la
lista
$
{
listId
}:
$
{
JSON
.
stringify
(
error
?.
response
?
.
data
)}
`);
console
.
log
(
`Error al agregar al usuario
${
email
}
a la lista
${
listId
}
:
${
JSON
.
stringify
(
error
.
response
.
data
)}
`
);
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment