]> git.localhorst.tv Git - alttp.git/blobdiff - app/Console/Commands/SyncSpeedGaming.php
fixup speedgaming timezone shenanigangs?
[alttp.git] / app / Console / Commands / SyncSpeedGaming.php
index 75f3cbcda567f034529619352f969bf820b9a569..b2ac7f1b315fd94f2bcd15d571f9bcc958323959 100644 (file)
@@ -104,7 +104,11 @@ class SyncSpeedGaming extends Command {
                $episode->event()->associate($event);
                $episode->title = $sgEntry['match1']['title'];
                $start = Carbon::createFromFormat('Y-m-d\TH:i:sP', $sgEntry['when']);
-               if ($start->ne($episode->start)) {
+               // if speedgaming is in DST, it fucks up the timestamp
+               if (Carbon::now(new \DateTimeZone('America/Chicago'))->dst) {
+                       $start->add(1, 'hour');
+               }
+               if (!$episode->start || $start->ne($episode->start)) {
                        $episode->start = $start;
                }
                $episode->estimate = $sgEntry['length'] * 60;