From: Daniel Karbach Date: Mon, 21 Jul 2025 20:59:26 +0000 (+0200) Subject: gee I hope this works X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;h=6cca31293e4e0db3f58347b66ff78f33120a151a;p=alttp.git gee I hope this works --- diff --git a/app/Console/Commands/SyncAlttprFr.php b/app/Console/Commands/SyncAlttprFr.php index c38f8ee..ba01139 100644 --- a/app/Console/Commands/SyncAlttprFr.php +++ b/app/Console/Commands/SyncAlttprFr.php @@ -47,7 +47,7 @@ class SyncAlttprFr extends Command { $html = Http::get('https://alttprfr.com/tournament/schedule/')->body(); $dom = new \DOMDocument(); - $dom->loadHTML(''.$html); + $dom->loadHTML(''.$html, LIBXML_NOERROR); $rows = $dom->getElementsByTagName('tr'); $schedule = []; foreach ($rows as $row) { @@ -61,7 +61,6 @@ class SyncAlttprFr extends Command { $entry[] = $cells->item(2)->textContent; $schedule[] = $entry; } - dd($schedule); foreach ($events as $event) { try {