From 7df205cb32062e058f08275af9810bb41c406e50 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sat, 7 Feb 2026 16:33:06 +0100 Subject: [PATCH] changed beer table format --- app/Console/Commands/SyncBeerLeague.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SyncBeerLeague.php b/app/Console/Commands/SyncBeerLeague.php index da1ffca..14345e6 100644 --- a/app/Console/Commands/SyncBeerLeague.php +++ b/app/Console/Commands/SyncBeerLeague.php @@ -72,7 +72,7 @@ class SyncBeerLeague extends Command { } private function syncEvent(Event $event, $schedule): void { - for ($i = 1; $i < count($schedule); ++$i) { + for ($i = 2; $i < count($schedule); ++$i) { $this->syncSchedule($event, $schedule[$i]); } } -- 2.47.3