From f8cdb7821502e21b9c6d99affad8ecb1c37bd713 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 27 Mar 2024 04:38:49 -0700 Subject: [PATCH] chore: improve caching + reporting --- api/event.js | 16 +++++++--------- package.json | 2 +- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/api/event.js b/api/event.js index fc82bf64..d7a2f146 100644 --- a/api/event.js +++ b/api/event.js @@ -33,17 +33,15 @@ export default async (request, context) => { { headers: { "Content-Type": "application/json" } } ) - if (!userId) { - await ids.set(id, id) - if (ns) { - url = setUrl(id, 'noscript visit') - } else { - url = setUrl(id, 'Blocked visit') - } - } - + if (!userId) await ids.set(id, id) userId = await ids.get(id) + if (ns) { + url = setUrl(userId, 'noscript visit') + } else { + url = setUrl(userId, 'Blocked visit') + } + fetch(url, { headers }) .then((data) => { console.log(data); diff --git a/package.json b/package.json index 3d8b3657..35d3d184 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "8.7.11", + "version": "8.7.12", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {