]> git.localhorst.tv Git - alttp.git/commitdiff
reintroduce racetime start time filter
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 24 Jan 2025 15:03:25 +0000 (16:03 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 24 Jan 2025 15:03:25 +0000 (16:03 +0100)
app/Console/Commands/SyncRacetime.php

index 03337df6769455e71fe651a1a0995b1f73d7426f..854897e305a054f5f0be46310ad0a75e01a58cda 100644 (file)
@@ -56,12 +56,12 @@ class SyncRacetime extends Command {
                $racerooms = $this->getRacetime($event->racetime_category);
                foreach ($episodes as $episode) {
                        $rooms = $this->filterID($episode, $racerooms);
-                       //if (count($rooms) > 1) {
-                       //      $rooms = $this->filterStartTime($episode, $rooms);
-                       //}
                        if (count($rooms) > 1) {
                                $rooms = $this->filterPlayerNames($episode, $rooms);
                        }
+                       if (count($rooms) > 1) {
+                               $rooms = $this->filterStartTime($episode, $rooms);
+                       }
                        if (count($rooms) == 1) {
                                $this->line(' - linking episode '.$episode->id.' with room '.$rooms[0]['name']);
                                $episode->raceroom = 'https://racetime.gg'.$rooms[0]['url'];