From 7d393dfff6ee45732b857e5e84768b1845dac405 Mon Sep 17 00:00:00 2001 From: Mia <49593536+mia-pi-git@users.noreply.github.com> Date: Sun, 27 Oct 2024 17:21:15 -0500 Subject: [PATCH] Fix time desync --- src/actions.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/actions.ts b/src/actions.ts index 34a76a6..e98c327 100644 --- a/src/actions.ts +++ b/src/actions.ts @@ -118,7 +118,6 @@ export function checkSuspectVerified( userid: rating.userid, format: suspect.formatid, reqs: {required: reqs, actual: userData}, - suspectStartDate: suspect.start_date, }); return true; } @@ -1067,7 +1066,7 @@ export const actions: {[k: string]: QueryHandler} = { } await tables.suspects.replace({ formatid: id, - start_date: time(), + start_date: start, elo: reqs.elo || null, gxe: reqs.gxe || null, coil: reqs.coil || null,