This commit is contained in:
InsanusMokrassar 2022-12-13 10:52:56 +06:00
parent fe133bbde0
commit b43d9aefb9
2 changed files with 10 additions and 1 deletions

View File

@ -3,7 +3,9 @@
## 4.2.2
* `Versions`:
* `MicroUtils`: `0.16.0` -> `0.16.1`
* `MicroUtils`: `0.16.0` -> `0.16.1`
* `Core`:
* Fix of [#694](https://github.com/InsanusMokrassar/TelegramBotAPI/issues/694): add opportunity to create `ChatId` and `ChatIdWithThreadId` from `IdChatIdentifier`
## 4.2.1

View File

@ -54,6 +54,13 @@ value class ChatIdWithThreadId(val chatIdWithThreadId: Pair<Identifier, MessageT
val ChatIdentifier.threadId: MessageThreadId?
get() = (this as? IdChatIdentifier) ?.threadId
fun IdChatIdentifier.toChatId() = when (this) {
is ChatId -> this
is ChatIdWithThreadId -> ChatId(chatId)
}
fun IdChatIdentifier.toChatWithThreadId(threadId: MessageThreadId) = IdChatIdentifier(chatId, threadId)
/**
* https://core.telegram.org/bots/api#formatting-options
*/