We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4192f commit 2024806Copy full SHA for 2024806
src/Sentry/Laravel/Tracing/Integrations/LighthouseIntegration.php
@@ -80,7 +80,7 @@ public function setupOnce(): void
80
private function processEvent(Event $event, Options $options): void
81
{
82
// Detect if we are processing a GraphQL request, if not skip processing the event
83
- if (!Str::startsWith($event->getTransaction(), 'lighthouse?')) {
+ if ($event->getTransaction() === null || !Str::startsWith($event->getTransaction(), 'lighthouse?')) {
84
return;
85
}
86
0 commit comments