diff --git a/api/event.js b/api/event.js index 4954d517..abbd35d1 100644 --- a/api/event.js +++ b/api/event.js @@ -15,7 +15,6 @@ export default async (request, context) => { let url; if (i) return; - if (ns) { const ids = getStore('ids') if (!ids.get(id)) ids.set(id, '') diff --git a/src/assets/scripts/index.js b/src/assets/scripts/index.js index 0ca29233..73f4c006 100644 --- a/src/assets/scripts/index.js +++ b/src/assets/scripts/index.js @@ -1,7 +1,9 @@ const id = Math.floor(Math.random() * Date.now()) let i; +let url = `https://coryd.dev/api/event/?page=${encodeURIComponent(window.location.href)}&num=${sessionStorage.getItem('id' || id)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}` if (window.sessionStorage && !window.sessionStorage?.getItem('id')) sessionStorage.setItem('id', id) -if (window.localStorage && window.localStorage.getItem('i')) i = localStorage.getItem('i') -if (!window.fathom) { - fetch(`https://coryd.dev/api/event/?page=${encodeURIComponent(window.location.href)}&num=${sessionStorage.getItem('id' || id)}&lang=${encodeURIComponent(navigator.language)}&nav=${encodeURIComponent(navigator.userAgent)}&i=${i}`).then((data) => {}).catch(err => {}); -} \ No newline at end of file +if (window.localStorage && window.localStorage.getItem('i')) { + i = localStorage.getItem('i') + url = `${url}&i=${i}` +} +if (!window.fathom) fetch(url).then((data) => {}).catch(err => {}); \ No newline at end of file