From 83a652f53048b6c6eab939cf969902fc3d34854a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 29 Mar 2024 09:55:07 -0700 Subject: [PATCH] chore: debug --- api/scrobble.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/scrobble.js b/api/scrobble.js index ea75d1cf..4722fe3e 100644 --- a/api/scrobble.js +++ b/api/scrobble.js @@ -7,6 +7,9 @@ export default async (request, context) => { const data = await request.formData() const payload = data['payload'] + const debug = getStore('debug') + await debug.set('debug', payload) + if (!id) return new Response(JSON.stringify({ status: 'Bad request', }),