From dc1869167dfbf6ebe4cfc22fc00c71ecfdc38359 Mon Sep 17 00:00:00 2001 From: eternnoir Date: Sun, 1 May 2016 00:24:54 +0800 Subject: [PATCH] Fix #153 --- telebot/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/telebot/types.py b/telebot/types.py index 993307d..cba36df 100644 --- a/telebot/types.py +++ b/telebot/types.py @@ -1353,7 +1353,7 @@ class InlineQueryResultCachedVoice(BaseInlineQueryResultCached): self.title = title self.reply_markup = reply_markup self.input_message_content = input_message_content - self.payload_dic['voice_file_idd'] = voice_file_id + self.payload_dic['voice_file_id'] = voice_file_id class InlineQueryResultCachedAudio(BaseInlineQueryResultCached):