Skip to content

Commit

Permalink
fix: msg op did not correctly url-decode url content in save
Browse files Browse the repository at this point in the history
- fix: fixed execute() function in msg ops
  • Loading branch information
mattebit committed Feb 8, 2024
1 parent b16ae64 commit 9a1a1aa
Show file tree
Hide file tree
Showing 3 changed files with 219 additions and 237 deletions.
2 changes: 1 addition & 1 deletion tool/src/main/java/migt/Check.java
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private String url_decode(String string) {
if (url_decode) {
if (string.contains("+")) {
System.err.println("Warning! During a check on the value\"" +
((string.length() > 10) ? string.substring(0,9) + "..." : string) +
((string.length() > 10) ? string.substring(0, 9) + "..." : string) +
"\" a '+' symbol has been" +
"converted to a space, as it has been interpreted as url-encoded character. If you want to avoid" +
"this behaviour use 'url decode' tag set to false inside the check to disable url-decoding");
Expand Down
Loading

0 comments on commit 9a1a1aa

Please sign in to comment.