Skip to content

Commit

Permalink
Fix update-application.js (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
porcherface authored Aug 22, 2024
1 parent 4b60e24 commit e17c278
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/update-application.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const vonage = new Vonage({
});

vonage.applications.updateApplication({
applicationId: VONAGE_APPLICATION_ID,
id: VONAGE_APPLICATION_ID,
name: NAME,
capabilities: {
voice: {
Expand Down Expand Up @@ -53,4 +53,4 @@ vonage.applications.updateApplication({
}
})
.then(resp => console.log(resp))
.catch(err => console.error(err));
.catch(err => console.error(err));

0 comments on commit e17c278

Please sign in to comment.