From dc004b57a3d95d29dbf8a06a07df43f603eec6be Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sat, 1 Apr 2023 20:56:15 +0200 Subject: [PATCH] fix eastern timezone LUL --- app/Console/Commands/SyncSRA.php | 2 +- app/Console/Commands/SyncSpeedGaming.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/SyncSRA.php b/app/Console/Commands/SyncSRA.php index fcf7a41..18680ad 100644 --- a/app/Console/Commands/SyncSRA.php +++ b/app/Console/Commands/SyncSRA.php @@ -83,7 +83,7 @@ class SyncSRA extends Command { } else { $episode->title = $row[2]; } - $start = Carbon::createFromFormat('m/d/Y H:i', $row[0].' '.$row[1], 'America/Chicago')->setTimezone('UTC'); + $start = Carbon::createFromFormat('m/d/Y H:i', $row[0].' '.$row[1], 'America/Detroit')->setTimezone('UTC'); if (!$episode->start || $start->ne($episode->start)) { $episode->start = $start; } diff --git a/app/Console/Commands/SyncSpeedGaming.php b/app/Console/Commands/SyncSpeedGaming.php index 95304c3..610968e 100644 --- a/app/Console/Commands/SyncSpeedGaming.php +++ b/app/Console/Commands/SyncSpeedGaming.php @@ -105,7 +105,7 @@ class SyncSpeedGaming extends Command { $episode->title = $sgEntry['match1']['title']; $start = Carbon::createFromFormat('Y-m-d\TH:i:sP', $sgEntry['when']); if ($event->fix_timezone && !$episode->timezone_fix_override) { - $sg_zone = new \DateTimeZone('America/Chicago'); + $sg_zone = new \DateTimeZone('America/Detroit'); $event_zone = new \DateTimeZone($event->fix_timezone); // if speedgaming is in DST, it fucks up the timestamp if (Carbon::createFromTimestamp($start->timestamp, $sg_zone)->dst && !Carbon::createFromTimestamp($start->timestamp, $event_zone)->dst) { -- 2.39.2