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 4409001 commit a0a8270Copy full SHA for a0a8270
sentry/src/main/java/io/sentry/SentryTraceHeader.java
@@ -18,7 +18,7 @@ public final class SentryTraceHeader {
18
// Use numbered capture groups for Android API level < 26 compatibility
19
private static final Pattern SENTRY_TRACEPARENT_HEADER_REGEX =
20
Pattern.compile(
21
- "^[ \t]*([0-9a-f]{32})-([0-9a-f]{16})(-[01])?[ \t]*$", Pattern.CASE_INSENSITIVE);
+ "^[ \\t]*([0-9a-f]{32})-([0-9a-f]{16})(-[01])?[ \\t]*$", Pattern.CASE_INSENSITIVE);
22
23
public SentryTraceHeader(
24
final @NotNull SentryId traceId,
0 commit comments