Skip to content

Commit

Permalink
fix: use correct regional ingest domain for ORG_INGEST_DOMAIN
Browse files Browse the repository at this point in the history
  • Loading branch information
oioki committed Jul 25, 2024
1 parent 4e5cd81 commit 1a456d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/codeContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export async function fetchCodeKeywords(): Promise<CodeKeywords> {
PROJECT_SLUG: project.projectSlug,
ORG_ID: project.organizationId,
ORG_SLUG: project.organizationSlug,
ORG_INGEST_DOMAIN: `o${project.organizationId}.ingest.sentry.io`,
ORG_INGEST_DOMAIN: parsedDsn.host ?? `o${project.organizationId}.ingest.sentry.io`,
MINIDUMP_URL: formatMinidumpURL(parsedDsn),
UNREAL_URL: formatUnrealEngineURL(parsedDsn),
title: `${project.organizationSlug} / ${project.projectSlug}`,
Expand Down

0 comments on commit 1a456d5

Please sign in to comment.