fix: inits
This commit is contained in:
parent
028c2c66eb
commit
8326fbfaab
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@ 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, id)
|
if (!ids.get(id)) await ids.set(id, id)
|
||||||
const idVal = ids.get(id)
|
const idVal = await 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 {
|
||||||
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${num}`
|
url = `https://cdn.usefathom.com/?h=${encodeURIComponent(page)}&sid=CWSVCDJC&cid=${num}`
|
||||||
|
|
Reference in a new issue