fix response sent to twilio for incoming messages on free plan

This commit is contained in:
m5r 2021-10-25 01:24:13 +02:00
parent 101f33720f
commit 52732847fc

View File

@ -71,7 +71,8 @@ export default async function incomingMessageHandler(req: BlitzApiRequest, res:
if (phoneNumbersWithActiveSub.length === 0) { if (phoneNumbersWithActiveSub.length === 0) {
// accept the webhook but don't store incoming message // accept the webhook but don't store incoming message
// because the organization is on the free plan // because the organization is on the free plan
res.status(200).end(); res.setHeader("content-type", "text/html");
res.status(200).send("<Response></Response>");
return; return;
} }