Skip to content

Commit

Permalink
fix region offset for APAC huddles
Browse files Browse the repository at this point in the history
  • Loading branch information
sporeball committed Jan 15, 2025
1 parent b8e79a7 commit 7bab9b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function huddle(iteration) {
}

function huddle_start(region, iteration) {
let region_offset = region == "us_eu" ? 2 * 3_600_000 : 13 * 3_600_000;
let region_offset = region == "us_eu" ? 2 * 3_600_000 : 12 * 3_600_000;
return new Date(
event_start_time.getTime() +
(2 * 86_400_000 * iteration) +
Expand Down Expand Up @@ -74,4 +74,4 @@ let huddles = [
];

huddle_check();
setInterval(huddle_check, 10000);
setInterval(huddle_check, 10000);

0 comments on commit 7bab9b2

Please sign in to comment.