From 867c5f637f3f1ec603e0e288386e01812949cc3d Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Fri, 1 May 2026 17:33:58 +0200 Subject: [PATCH] fix row count in xdhunt sync --- app/Console/Commands/SyncXDHunt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SyncXDHunt.php b/app/Console/Commands/SyncXDHunt.php index 916e972..0a26a42 100644 --- a/app/Console/Commands/SyncXDHunt.php +++ b/app/Console/Commands/SyncXDHunt.php @@ -72,7 +72,7 @@ class SyncXDHunt extends Command { } private function syncEvent(Event $event, $schedule): void { - for ($i = 3; $i < count($schedule); ++$i) { + for ($i = 2; $i < count($schedule); ++$i) { $this->syncSchedule($event, $schedule[$i]); } } -- 2.47.3