chore: fixes
This commit is contained in:
parent
ef280f0a1c
commit
642ab61886
1 changed files with 1 additions and 9 deletions
|
@ -3,13 +3,5 @@ let i;
|
|||
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) => {
|
||||
console.log(data)
|
||||
return {}
|
||||
})
|
||||
.catch(err => {
|
||||
console.log(err);
|
||||
return {}
|
||||
});
|
||||
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 => {});
|
||||
}
|
Reference in a new issue