Skip to content

Commit

Permalink
Merge pull request #1880 from Expensify/main
Browse files Browse the repository at this point in the history
Update expensify_prod branch
  • Loading branch information
deetergp authored Sep 25, 2024
2 parents 633999e + 67b55ff commit 64acd72
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libstuff/libstuff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2913,6 +2913,9 @@ void SRedactSensitiveValues(string& s) {

// Remove anything inside "html" because we intentionally don't log chats.
s = SREReplace("\"html\":\".*\"", s, "\"html\":\"<REDACTED>\"");

// Remove anything inside "edits" because these are also chats.
s = SREReplace(R"(\"edits\":\[.*?\])", s, "\"edits\":[\"REDACTED\"]");
}

SStopwatch::SStopwatch() {
Expand Down

0 comments on commit 64acd72

Please sign in to comment.