File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed
src/main/kotlin/com/github/pool_party/pull_party_bot/commands/handlers/callback Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 1.2.5] - 21.04.2022
4+
5+ ### Fixed
6+
7+ - Escaping markdown in messages
8+
39## [ 1.2.4] - 19.04.2022
410
511### Fixed
130136- Implicit party pulling
131137- Rude mode
132138
139+ [ 1.2.5 ] : https://github.com/pool-party/pull-party-bot/compare/v1.2.4...v1.2.5
133140[ 1.2.4 ] : https://github.com/pool-party/pull-party-bot/compare/v1.2.3...v1.2.4
134141[ 1.2.3 ] : https://github.com/pool-party/pull-party-bot/compare/v1.2.2...v1.2.3
135142[ 1.2.2 ] : https://github.com/pool-party/pull-party-bot/compare/v1.2.1...v1.2.2
Original file line number Diff line number Diff line change 1- web : java -jar build/libs/pull-party-bot-1.2.4 .jar
1+ web : java -jar build/libs/pull-party-bot-1.2.5 .jar
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
99}
1010
1111group = " org.pool-party"
12- version = " 1.2.4 "
12+ version = " 1.2.5 "
1313
1414repositories {
1515 maven(" https://jitpack.io" )
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import com.github.pool_party.pull_party_bot.commands.CallbackAction
77import com.github.pool_party.pull_party_bot.commands.CallbackData
88import com.github.pool_party.pull_party_bot.commands.answerCallbackQueryLogging
99import com.github.pool_party.pull_party_bot.commands.deleteMessageLogging
10+ import com.github.pool_party.pull_party_bot.commands.escapeMarkdown
1011import com.github.pool_party.pull_party_bot.commands.messages.ON_PING_CREATOR_MISMATCH
1112import com.github.pool_party.pull_party_bot.commands.sendMessageLogging
1213import com.github.pool_party.pull_party_bot.database.dao.PartyDao
@@ -32,7 +33,7 @@ class PingCallback(private val partyDao: PartyDao) : Callback {
3233 }
3334
3435 val chatId = message.chat.id
35- sendMessageLogging(chatId, party.users)
36+ sendMessageLogging(chatId, party.users.escapeMarkdown() )
3637 deleteMessageLogging(chatId, message.message_id)
3738 }
3839}
You can’t perform that action at this time.
0 commit comments