Skip to content

Commit a0a8270

Browse files
Use previous tab escape
1 parent 4409001 commit a0a8270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry/src/main/java/io/sentry/SentryTraceHeader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public final class SentryTraceHeader {
1818
// Use numbered capture groups for Android API level < 26 compatibility
1919
private static final Pattern SENTRY_TRACEPARENT_HEADER_REGEX =
2020
Pattern.compile(
21-
"^[ \t]*([0-9a-f]{32})-([0-9a-f]{16})(-[01])?[ \t]*$", Pattern.CASE_INSENSITIVE);
21+
"^[ \\t]*([0-9a-f]{32})-([0-9a-f]{16})(-[01])?[ \\t]*$", Pattern.CASE_INSENSITIVE);
2222

2323
public SentryTraceHeader(
2424
final @NotNull SentryId traceId,

0 commit comments

Comments
 (0)