Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guimc233 committed Jul 7, 2024
1 parent f50243a commit 1dfa0b9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/ltd/guimc/plugin/quotly/QuotLyCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ object QuotLyCommand: SimpleCommand(
" \"text\": \"${textMessage.replace("\\", "\\\\")
.replace("\r", "\\r")
.replace("\n", "\\n")
.replace("\t", "\\t")}\",\n" +
.replace("\t", "\\t")
.replace("\"", "\\\"")}\",\n" +
" }\n" +
" ]\n" +
" }")
Expand Down

0 comments on commit 1dfa0b9

Please sign in to comment.