From d43613035a5c613b04ef627999c9d2284a71160a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 24 Mar 2024 13:35:42 -0700 Subject: [PATCH] chore: debug --- api/event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/event.js b/api/event.js index 330f67ac..5778b0e3 100644 --- a/api/event.js +++ b/api/event.js @@ -8,6 +8,7 @@ export default async (request, context) => { const lang = decodeURIComponent(new URL(request['url']).searchParams.get('lang')) const nav = decodeURIComponent(new URL(request['url']).searchParams.get('nav')) const ig = new URL(request['url']).searchParams.get('ig') + const ids = getStore('ids') const headers = {} if (lang) headers['Accept-Language'] = lang; if (nav) headers['User-Agent'] = nav; @@ -20,7 +21,6 @@ export default async (request, context) => { console.log(stores) console.log('### STORES') const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex'); - const ids = getStore('ids') if (!ids.get(id)) await ids.set(id, id) const idVal = await ids.get(id) url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${idVal}`