diff --git a/api/event.js b/api/event.js index 4e6561b6..6102e1e6 100644 --- a/api/event.js +++ b/api/event.js @@ -6,7 +6,7 @@ export default async (request, context) => { const ns = params.get('ns') const site = params.get('site') const page = params.get('page') - const ignore = params.get('ignore') + const na = params.get('ignore') const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${encodeURIComponent(site)}&p=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${id}&name=${encodeURIComponent(event)}` @@ -29,7 +29,11 @@ export default async (request, context) => { if (!userId) await ids.set(id, id) const idVal = await ids.get(id) - if (ignore) return + if (ignore) return new Response(JSON.stringify({ + status: 'accepted', + }), + { headers: { "Content-Type": "application/json" } } + ) if (ns) { url = setUrl(idVal, 'noscript visit') } else { diff --git a/package.json b/package.json index b242893a..364db6b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "8.7.8", + "version": "8.7.9", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": {