Skip to content

Commit 3c0c7cf

Browse files
authored
fix: aspnet fqdn (#485)
1 parent 9f5ebb9 commit 3c0c7cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sentry/Internal/Web/SystemWebRequestEventProcessor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public SentryEvent Process(SentryEvent @event)
4141
}
4242

4343
@event.Request.Method = context.Request.HttpMethod;
44-
@event.Request.Url = context.Request.RawUrl;
44+
@event.Request.Url = context.Request.Url.AbsoluteUri;
4545

4646
try
4747
{

0 commit comments

Comments
 (0)