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 3043385 commit 61eba6cCopy full SHA for 61eba6c
posthog/sentry/posthog_integration.py
@@ -43,9 +43,9 @@ def processor(event, hint):
43
not not Hub.current.client.dsn and Dsn(Hub.current.client.dsn).project_id
44
)
45
if project_id:
46
- properties[
47
- "$sentry_url"
48
- ] = f"{PostHogIntegration.prefix}{PostHogIntegration.organization}/issues/?project={project_id}&query={event['event_id']}"
+ properties["$sentry_url"] = (
+ f"{PostHogIntegration.prefix}{PostHogIntegration.organization}/issues/?project={project_id}&query={event['event_id']}"
+ )
49
50
posthog.capture(posthog_distinct_id, "$exception", properties)
51
0 commit comments