Correct issue with testing.

This commit is contained in:
Matt Young 2025-10-02 21:57:31 -05:00
parent 8a2b2256cf
commit 87046bb736
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class EntryObserver
*/
public function updated(Entry $entry): void
{
if (Request::route()->getName() !== 'admin.draw.store') { // Don't update doubler table during draw
if (Request::route()?->getName() !== 'admin.draw.store') { // Don't update doubler table during draw
$syncer = app(DoublerSync::class);
// Update doubler table when an entry is updated
$syncer();