[fix] backup error

This commit is contained in:
kwaroran
2023-05-27 03:51:23 +09:00
parent 7b8a876059
commit a79df81b42

View File

@@ -29,7 +29,7 @@ async function drive(request, env){
const json = await resp.json()
if(json.access_token && json.expires_in){
return new Response(json, {
return new Response(JSON.stringify(json), {
status: 200,
headers: headerE
})