chore: fixes
This commit is contained in:
parent
642ab61886
commit
16adf9af06
2 changed files with 6 additions and 5 deletions
|
@ -15,7 +15,6 @@ export default async (request, context) => {
|
||||||
let url;
|
let url;
|
||||||
|
|
||||||
if (i) return;
|
if (i) return;
|
||||||
|
|
||||||
if (ns) {
|
if (ns) {
|
||||||
const ids = getStore('ids')
|
const ids = getStore('ids')
|
||||||
if (!ids.get(id)) ids.set(id, '')
|
if (!ids.get(id)) ids.set(id, '')
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
const id = Math.floor(Math.random() * Date.now())
|
const id = Math.floor(Math.random() * Date.now())
|
||||||
let i;
|
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.sessionStorage && !window.sessionStorage?.getItem('id')) sessionStorage.setItem('id', id)
|
||||||
if (window.localStorage && window.localStorage.getItem('i')) i = localStorage.getItem('i')
|
if (window.localStorage && window.localStorage.getItem('i')) {
|
||||||
if (!window.fathom) {
|
i = localStorage.getItem('i')
|
||||||
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 => {});
|
url = `${url}&i=${i}`
|
||||||
}
|
}
|
||||||
|
if (!window.fathom) fetch(url).then((data) => {}).catch(err => {});
|
Reference in a new issue