Skip to content

Commit

Permalink
repair broken regex pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
scbedd committed May 6, 2024
1 parent afd8602 commit c1c068b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public SanitizerDictionary() {
"AZSDK3002"
),
new RegisteredSanitizer(
new BodyRegexSanitizer(regex: "token=(?<token>[^&\\\"\\s\\n,\\\\)", groupForReplace: "token"),
new BodyRegexSanitizer(regex: "token=(?<token>[^&\\\"\\s\\n,\\\\])", groupForReplace: "token"),
"AZSDK3003"
),
new RegisteredSanitizer(
Expand Down

0 comments on commit c1c068b

Please sign in to comment.