diff --git a/setup.py b/setup.py index ffaf4c9..628ff10 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def readme(): return f.read() setup(name='pyTelegramBotAPI', - version='2.1.1', + version='2.1.2', description='Python Telegram bot api. ', long_description=readme(), author='eternnoir', diff --git a/telebot/types.py b/telebot/types.py index baa60ea..adf37e1 100644 --- a/telebot/types.py +++ b/telebot/types.py @@ -1196,7 +1196,7 @@ class InlineQueryResultVenue(JsonSerializable): self.thumb_height = thumb_height def to_json(self): - json_dict = {'type': self.type, 'title': self.title, 'id': self.id, 'latitude': self.latitude, + json_dict = {'type': self.type, 'id': self.id, 'title': self.title, 'latitude': self.latitude, 'longitude': self.longitude, 'address': self.address} if self.foursquare_id: json_dict['foursquare_id'] = self.foursquare_id