diff --git a/README.md b/README.md index 151a7ab..de49fe1 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
Matt Telesky

🐛 💻
Garrett Scott

🐛 💻
Patrice Gargiolo

📖 -
Michael W. Martin

🐛 💻 +
Michael W. Martin

🐛 💻
mr-black-8

🐛 💻 diff --git a/src/sns-adapter.ts b/src/sns-adapter.ts index 8e1085d..bf63dcc 100644 --- a/src/sns-adapter.ts +++ b/src/sns-adapter.ts @@ -151,7 +151,10 @@ export class SNSAdapter implements ISNSAdapter { this.debug("Visiting subscribe url: " + req.body.SubscribeURL); return fetch(req.body.SubscribeURL, { method: "GET" - }).then((fetchResponse) => this.debug("Subscribed: " + fetchResponse)); + }).then((fetchResponse) => { + this.debug("Subscribed: " + fetchResponse) + res.status(200).send(); + }); } const sendIt = (err, response) => {