Skip to content

Commit

Permalink
Fix time desync
Browse files Browse the repository at this point in the history
  • Loading branch information
mia-pi-git committed Oct 27, 2024
1 parent 41dfa29 commit 7d393df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export function checkSuspectVerified(
userid: rating.userid,
format: suspect.formatid,
reqs: {required: reqs, actual: userData},
suspectStartDate: suspect.start_date,
});
return true;
}
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 7d393df

Please sign in to comment.