From: Daniel Karbach Date: Wed, 13 May 2026 10:59:28 +0000 (+0200) Subject: TFL fix X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=eca33a8f78fe1c3b7c3b5113757d5382b6a2f7c4;p=alttp.git TFL fix --- diff --git a/app/Console/Commands/SyncTFL.php b/app/Console/Commands/SyncTFL.php index c9436cd..5ada156 100644 --- a/app/Console/Commands/SyncTFL.php +++ b/app/Console/Commands/SyncTFL.php @@ -102,7 +102,7 @@ class SyncTFL extends Command { $episode->confirmed = true; $episode->save(); - if (!preg_match('/\\| (.*) vs\\. (.*) \\|/', $tflEntry['name'], $matches)) { + if (!preg_match('/\\| ([^|]+) vs\\. ([^|]+) \\|/', $tflEntry['name'], $matches)) { return; } $tflPlayers = [$matches[1], $matches[2]];