capture also voice messages

feature-unify_handlers
Tomáš Mládek 2018-02-03 15:44:01 +01:00 committed by Tomááas Mladek
parent de6fc16044
commit 01ad1aad8f
1 changed files with 3 additions and 1 deletions

View File

@ -132,6 +132,8 @@ def handle_rest(bot, update):
file = update.message.audio.file_id
elif update.message.video is not None:
file = update.message.video.file_id
elif update.message.voice is not None:
file = update.message.voice.file_id
if file is not None:
try:
url = bot.getFile(file).file_path
@ -166,7 +168,7 @@ def main():
dp.add_error_handler(error)
dp.add_handler(MessageHandler(Filters.entity(MessageEntity.URL), handle_url))
dp.add_handler(MessageHandler(Filters.photo | Filters.video | Filters.audio | Filters.document, handle_rest))
dp.add_handler(MessageHandler(Filters.photo | Filters.video | Filters.audio | Filters.voice | Filters.document, handle_rest))
updater.start_polling()