Queer European MD passionate about IT
Browse Source

Fixed bug in location setting function

Davte 3 years ago
parent
commit
ed0bfd1526
2 changed files with 4 additions and 3 deletions
  1. 1 1
      ciclopibot/__init__.py
  2. 3 2
      ciclopibot/ciclopi.py

+ 1 - 1
ciclopibot/__init__.py

@@ -3,7 +3,7 @@
 __author__ = "Davide Testa"
 __email__ = "davide@davte.it"
 __license__ = "GNU General Public License v3.0"
-__version__ = "1.2.4"
+__version__ = "1.2.5"
 __maintainer__ = "Davide Testa"
 __contact__ = "t.me/davte"
 

+ 3 - 2
ciclopibot/ciclopi.py

@@ -1479,7 +1479,7 @@ async def _ciclopi_button_favourites(bot, update, user_record, arguments):
     return result, text, reply_markup
 
 
-async def _ciclopi_button_setpos(bot, update, user_record):
+async def _ciclopi_button_setpos(bot, update, user_record, language):
     result, text, reply_markup = '', '', None
     chat_id = (
         update['message']['chat']['id'] if 'message' in update
@@ -1492,7 +1492,8 @@ async def _ciclopi_button_setpos(bot, update, user_record):
     )
     bot.set_individual_location_handler(
         await async_wrapper(
-            set_ciclopi_location
+            set_ciclopi_location,
+            language=language
         ),
         update
     )