This commit is contained in:
xlf1024 2019-10-13 21:32:50 +00:00 committed by GitHub
commit 5754f3fd13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
bot.py
View file

@ -636,9 +636,14 @@ def reply_to_query(bot, update):
if players and game and len(players) > 1:
switch = _('Current game: {game}').format(game=game.chat.title)
# Pagination. This is necessary as the Telegram servers discard inline query answers with more than 50 entries.
offset = int(update.inline_query.offset) if update.inline_query.offset != None and update.inline_query.offset.isnumeric() else 0
next_offset = offset + 42
results = results[offset : next_offset]
answer_async(bot, update.inline_query.id, results, cache_time=0,
switch_pm_text=switch, switch_pm_parameter='select')
switch_pm_text=switch, switch_pm_parameter='select', next_offset=str(next_offset))
@game_locales