fix: inits
This commit is contained in:
parent
d300f24e5f
commit
028c2c66eb
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ export default async (request, context) => {
|
||||||
if (ns) {
|
if (ns) {
|
||||||
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex');
|
const id = crypto.createHash('md5').update(`${context['ip']}${context['geo']['city']}`).digest('hex');
|
||||||
const ids = getStore('ids')
|
const ids = getStore('ids')
|
||||||
if (!ids.get(id)) ids.set(id, '')
|
if (!ids.get(id)) ids.set(id, id)
|
||||||
const idVal = ids.get(id)
|
const idVal = ids.get(id)
|
||||||
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${idVal}`
|
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${idVal}`
|
||||||
} else {
|
} else {
|
||||||
|
|
Reference in a new issue