mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 16:14:02 +00:00
fix(miniapp): return empty preflight responses
This commit is contained in:
@@ -20,7 +20,7 @@ export function miniAppJsonResponse(body: object, status = 200, origin?: string)
|
||||
headers.set('vary', 'origin')
|
||||
}
|
||||
|
||||
return new Response(JSON.stringify(body), {
|
||||
return new Response(status === 204 ? null : JSON.stringify(body), {
|
||||
status,
|
||||
headers
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user