Update session hash calculation.

pull/1030/head
Mike Cao 2022-03-14 11:14:05 -07:00
parent a7847ce5f4
commit 128f15092e
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export async function getSession(req) {
}
const { website_id } = website;
const session_uuid = uuid(website_id, hostname, ip, userAgent, os);
const session_uuid = uuid(website_id, hostname, ip, userAgent);
let session = await getSessionByUuid(session_uuid);