From f7088fde1d7475b5a2720a78be928ee50a4c3c41 Mon Sep 17 00:00:00 2001 From: Lee Danilek Date: Mon, 21 Oct 2024 15:32:06 -0400 Subject: [PATCH] fix --- src/client/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/client/index.ts b/src/client/index.ts index 6f210ae..a98807f 100644 --- a/src/client/index.ts +++ b/src/client/index.ts @@ -108,7 +108,13 @@ export class Twilio< }, ); - return new Response(null, { status: 200 }); + const emptyResponseTwiML = ` + +`; + + return new Response(emptyResponseTwiML, { status: 200, headers: { + 'Content-Type': 'application/xml', + } }); }), }); }