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" } }
|
||||
)
|
||||
|
||||
if (!userId) {
|
||||
await ids.set(id, id)
|
||||
if (ns) {
|
||||
url = setUrl(id, 'noscript visit')
|
||||
} else {
|
||||
url = setUrl(id, 'Blocked visit')
|
||||
}
|
||||
}
|
||||
|
||||
if (!userId) await ids.set(id, id)
|
||||
userId = await ids.get(id)
|
||||
|
||||
if (ns) {
|
||||
url = setUrl(userId, 'noscript visit')
|
||||
} else {
|
||||
url = setUrl(userId, 'Blocked visit')
|
||||
}
|
||||
|
||||
fetch(url, { headers })
|
||||
.then((data) => {
|
||||
console.log(data);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "8.7.11",
|
||||
"version": "8.7.12",
|
||||
"description": "The source for my personal site. Built using 11ty.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
Reference in a new issue