Fixed bug in location setting function
This commit is contained in:
parent
3cf0c06ba2
commit
ed0bfd1526
@ -3,7 +3,7 @@
|
|||||||
__author__ = "Davide Testa"
|
__author__ = "Davide Testa"
|
||||||
__email__ = "davide@davte.it"
|
__email__ = "davide@davte.it"
|
||||||
__license__ = "GNU General Public License v3.0"
|
__license__ = "GNU General Public License v3.0"
|
||||||
__version__ = "1.2.4"
|
__version__ = "1.2.5"
|
||||||
__maintainer__ = "Davide Testa"
|
__maintainer__ = "Davide Testa"
|
||||||
__contact__ = "t.me/davte"
|
__contact__ = "t.me/davte"
|
||||||
|
|
||||||
|
@ -1479,7 +1479,7 @@ async def _ciclopi_button_favourites(bot, update, user_record, arguments):
|
|||||||
return result, text, reply_markup
|
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
|
result, text, reply_markup = '', '', None
|
||||||
chat_id = (
|
chat_id = (
|
||||||
update['message']['chat']['id'] if 'message' in update
|
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(
|
bot.set_individual_location_handler(
|
||||||
await async_wrapper(
|
await async_wrapper(
|
||||||
set_ciclopi_location
|
set_ciclopi_location,
|
||||||
|
language=language
|
||||||
),
|
),
|
||||||
update
|
update
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user