From 3326efa5de6f1106f2f9e5aefbf578bccb7b218c Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Thu, 10 Jul 2025 09:11:49 +0200 Subject: [PATCH] fix hth estimate --- app/Console/Commands/SyncHTH.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SyncHTH.php b/app/Console/Commands/SyncHTH.php index a101423..293c15b 100644 --- a/app/Console/Commands/SyncHTH.php +++ b/app/Console/Commands/SyncHTH.php @@ -128,7 +128,7 @@ class SyncHTH extends Command { if (!$episode->start || $start->ne($episode->start)) { $episode->start = $start; } - $episode->estimate = 90 * 60 * 60; + $episode->estimate = 90 * 60; $episode->confirmed = true; if ($hthEntry['room']) { $episode->raceroom = $hthEntry['room']; -- 2.39.5