chore: improve caching + reporting

This commit is contained in:
Cory Dransfeldt 2024-03-27 06:22:59 -07:00
parent 554b675a4f
commit 4bca751c8e
No known key found for this signature in database

View file

@ -22,7 +22,7 @@ export default async (request, context) => {
'Accept-Language': acceptLanguage, 'Accept-Language': acceptLanguage,
'User-Agent': userAgent 'User-Agent': userAgent
} }
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}${context['geo']['latitude']}${context['geo']['longitude']}`).digest('hex') const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}${context['geo']['latitude']}${context['geo']['longitude']}${userAgent}`).digest('hex')
let url = setUrl(id) let url = setUrl(id)
const ids = getStore('ids') const ids = getStore('ids')
let userId = await ids.get(id) let userId = await ids.get(id)