chore: improve caching + reporting
This commit is contained in:
parent
97106a685e
commit
f8cdb78215
2 changed files with 8 additions and 10 deletions
16
api/event.js
16
api/event.js
|
@ -33,17 +33,15 @@ export default async (request, context) => {
|
||||||
{ headers: { "Content-Type": "application/json" } }
|
{ headers: { "Content-Type": "application/json" } }
|
||||||
)
|
)
|
||||||
|
|
||||||
if (!userId) {
|
if (!userId) await ids.set(id, id)
|
||||||
await ids.set(id, id)
|
|
||||||
if (ns) {
|
|
||||||
url = setUrl(id, 'noscript visit')
|
|
||||||
} else {
|
|
||||||
url = setUrl(id, 'Blocked visit')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
userId = await ids.get(id)
|
userId = await ids.get(id)
|
||||||
|
|
||||||
|
if (ns) {
|
||||||
|
url = setUrl(userId, 'noscript visit')
|
||||||
|
} else {
|
||||||
|
url = setUrl(userId, 'Blocked visit')
|
||||||
|
}
|
||||||
|
|
||||||
fetch(url, { headers })
|
fetch(url, { headers })
|
||||||
.then((data) => {
|
.then((data) => {
|
||||||
console.log(data);
|
console.log(data);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "8.7.11",
|
"version": "8.7.12",
|
||||||
"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