Skip to content

Commit

Permalink
Escape one more character (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
echerniak authored Aug 24, 2023
1 parent 645dee5 commit bf33480
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ private String escapeSpecialCharacters(String message) {
.replace("+", "\\+")
.replace("-", "\\-")
.replace("=", "\\=")
.replace(">", "\\>");
.replace(">", "\\>")
.replace("!", "\\!");
}
}

0 comments on commit bf33480

Please sign in to comment.