This commit is contained in:
Cory Dransfeldt 2024-03-25 11:24:51 -07:00
parent 9f34fe27f5
commit c44649ec3b
No known key found for this signature in database
2 changed files with 7 additions and 3 deletions

View file

@ -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 {

View file

@ -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": {