From c49f400201f86205c390a4cb6b2bfbdf21a77012 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Tue, 24 Oct 2023 15:52:06 +0600 Subject: [PATCH] fix in VoiceContent#createResend --- CHANGELOG.md | 3 +++ .../types/message/content/VoiceContent.kt | 21 ++++++++++--------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5734656cfb..9d70e47975 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## 9.2.3 +* `Core`: + * Fix in `VoiceContent#createResend` + ## 9.2.2 * `Core`: diff --git a/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/message/content/VoiceContent.kt b/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/message/content/VoiceContent.kt index 075f99ec31..7e7deceea8 100644 --- a/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/message/content/VoiceContent.kt +++ b/tgbotapi.core/src/commonMain/kotlin/dev/inmo/tgbotapi/types/message/content/VoiceContent.kt @@ -10,6 +10,7 @@ import dev.inmo.tgbotapi.types.MessageThreadId import dev.inmo.tgbotapi.types.buttons.KeyboardMarkup import dev.inmo.tgbotapi.types.files.VoiceFile import dev.inmo.tgbotapi.types.message.abstracts.ContentMessage +import dev.inmo.tgbotapi.types.threadId import kotlinx.serialization.Serializable @Serializable @@ -27,16 +28,16 @@ data class VoiceContent( allowSendingWithoutReply: Boolean?, replyMarkup: KeyboardMarkup? ): Request> = SendVoice( - chatId, - media.fileId, - textSources, - media.duration, - messageThreadId, - disableNotification, - protectContent, - replyToMessageId, - allowSendingWithoutReply, - replyMarkup + chatId = chatId, + voice = media.fileId, + entities = textSources, + threadId = messageThreadId, + duration = media.duration, + disableNotification = disableNotification, + protectContent = protectContent, + replyToMessageId = replyToMessageId, + allowSendingWithoutReply = allowSendingWithoutReply, + replyMarkup = replyMarkup ) override fun asTelegramMedia(): TelegramMediaAudio = TelegramMediaAudio(