Skip to content

Commit

Permalink
Fix EDT timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieudutour authored Sep 25, 2023
1 parent a2f55ff commit f8c43c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/timezones.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export const timezones: { [tz: string]: number } = {
UT: 0,
GMT: 0,
UTC: 0,
EDT: 0,
CVT: -1 * 3600,
BRST: -2 * 3600,
BRT: -3 * 3600,
AST: -4 * 3600,
EDT: -4 * 3600,
EST: -5 * 3600,
CDT: -5 * 3600,
CST: -6 * 3600,
Expand Down

0 comments on commit f8c43c6

Please sign in to comment.