fix: res
This commit is contained in:
parent
9f34fe27f5
commit
c44649ec3b
2 changed files with 7 additions and 3 deletions
|
@ -6,7 +6,7 @@ export default async (request, context) => {
|
||||||
const ns = params.get('ns')
|
const ns = params.get('ns')
|
||||||
const site = params.get('site')
|
const site = params.get('site')
|
||||||
const page = params.get('page')
|
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)}`
|
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)
|
if (!userId) await ids.set(id, id)
|
||||||
const idVal = await ids.get(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) {
|
if (ns) {
|
||||||
url = setUrl(idVal, 'noscript visit')
|
url = setUrl(idVal, 'noscript visit')
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "8.7.8",
|
"version": "8.7.9",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue