fix: headers

This commit is contained in:
Cory Dransfeldt 2024-03-25 10:25:21 -07:00
parent 8b3142cca7
commit 9cfc82c077
No known key found for this signature in database
4 changed files with 9 additions and 9 deletions

View file

@ -4,10 +4,11 @@ import { getStore } from '@netlify/blobs'
export default async (request, context) => {
const params = new URL(request['url']).searchParams
const ns = params.get('ns')
const site = params.get('site')
const page = params.get('page')
const ignore = params.get('ignore')
const setUrl = (id, event) => `https://cdn.usefathom.com/?h=${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)}`
const lang = decodeURIComponent(params.get('lang'))
const nav = decodeURIComponent(params.get('nav'))

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "8.7.7",
"version": "8.7.8",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {

View file

@ -90,7 +90,7 @@
{% endif %}
<noscript>
<style>.client-side {display:none}</style>
<img style="display:none" src="/api/event?site={{ meta.url | url_encode }}&page={{ page.url | url_encode }}&ns=true" />
<img style="display:none" src="/api/event?ns=true&site={{ meta.url | url_encode }}&page={{ page.url | url_encode }}" />
</noscript>
</head>
<body>

View file

@ -1,7 +1,6 @@
let ignore;
let url = `https://coryd.dev/api/event/?site=${encodeURIComponent(window.location.origin)}&page=${encodeURIComponent(window.location.pathname)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
if (window.localStorage && window.localStorage.getItem('ignore')) {
ignore = localStorage.getItem('ignore')
url = `${url}&ignore=${ignore}`
}
let ignore = window?.localStorage?.getItem('ignore')
let urlBase = 'https://coryd.dev/api/event/'
let params = `site=${encodeURIComponent(window.location.origin)}&page=${encodeURIComponent(window.location.pathname)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}`
let url = `${urlBase}?${params}`;
if (ignore) url = `${urlBase}?ignore=${ignore}&${params}`
if (!window.fathom) fetch(url).then(() => {}).catch(() => {});