Skip to content

Commit

Permalink
Fix the generated curl command on incoming integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
graywolf336 committed Apr 6, 2017
1 parent 9323473 commit 5b90066
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Template.integrationsIncoming.helpers({
}
});

return `curl -X POST -H 'Content-Type: application/json' --data 'payload=${ JSON.stringify(data) }' ${ record.url }`;
return `curl -X POST -H 'Content-Type: application/json' --data '${ JSON.stringify(data) }' ${ record.url }`;
},

editorOptions() {
Expand Down

0 comments on commit 5b90066

Please sign in to comment.