Skip to content

Commit

Permalink
Merge pull request #1121 from Badiboy/master
Browse files Browse the repository at this point in the history
Minor release
Heroku example update
  • Loading branch information
Badiboy authored Mar 28, 2021
2 parents 87bce0b + 209d9b2 commit 4024490
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion examples/webhook_examples/webhook_flask_heroku_echo.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ def echo_message(message):

@server.route('/' + TOKEN, methods=['POST'])
def getMessage():
bot.process_new_updates([telebot.types.Update.de_json(request.stream.read().decode("utf-8"))])
json_string = request.get_data().decode('utf-8')
update = telebot.types.Update.de_json(json_string)
bot.process_new_updates([update])
return "!", 200


Expand Down
2 changes: 1 addition & 1 deletion telebot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def infinity_polling(self, timeout=20, long_polling_timeout=20, logger_level=log
:param timeout: Request connection timeout
:param long_polling_timeout: Timeout in seconds for long polling (see API docs)
:param logger_level: Custom logging level for infinity_polling logging. None/NOTSET = no error logging
:param logger_level: Custom logging level for infinity_polling logging. Use logger levels from logging as a value. None/NOTSET = no error logging
"""
while not self.__stop_polling.is_set():
try:
Expand Down
2 changes: 1 addition & 1 deletion telebot/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Versions should comply with PEP440.
# This line is parsed in setup.py:
__version__ = '3.7.6'
__version__ = '3.7.7'

0 comments on commit 4024490

Please sign in to comment.