From: Daniel Karbach Date: Fri, 13 Feb 2026 18:13:21 +0000 (+0100) Subject: exclude hth from racetime sync X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=4ad5115516ed21f6ce21e9ba15eab9746a933f66;p=alttp.git exclude hth from racetime sync --- diff --git a/app/Console/Commands/SyncRacetime.php b/app/Console/Commands/SyncRacetime.php index 854897e..9c47362 100644 --- a/app/Console/Commands/SyncRacetime.php +++ b/app/Console/Commands/SyncRacetime.php @@ -32,6 +32,7 @@ class SyncRacetime extends Command { */ public function handle() { $events = Event::whereNotNull('racetime_category') + ->whereNotLike('external_schedule', 'hth:%') ->where(function (Builder $query) { $query->whereNull('end'); $query->orWhere('end', '>', now());