Add more escape params

This commit is contained in:
Egor Cherniak 2023-07-04 15:28:02 +03:00
parent eea0e3e7f1
commit 9bc004184d
No known key found for this signature in database
GPG Key ID: 26F47333B7BE4ED9

View File

@ -111,6 +111,7 @@ public class MenuCallbackMapper {
.replace("*", "\\*") .replace("*", "\\*")
.replace("[", "\\[") .replace("[", "\\[")
.replace("`", "\\`") .replace("`", "\\`")
.replace(".", "\\."); .replace(".", "\\.")
.replace("-", "\\-");
} }
} }