@bot.command and @bot.button parameter names changed

This commit is contained in:
Davte 2019-07-12 14:39:17 +02:00
parent b03b24fb2d
commit b19e7734e0

View File

@ -532,12 +532,13 @@ def init(bot):
) )
@bot.command(command='/talk', aliases=[], show_in_keyboard=False, @bot.command(command='/talk', aliases=[], show_in_keyboard=False,
descr="Choose a user and forward messages to each other.", description="Choose a user and forward messages to each "
auth='admin') "other.",
authorization_level='admin')
async def talk_command(update): async def talk_command(update):
return await _talk_command(update, bot) return await _talk_command(update, bot)
@bot.button(data='talk:///', auth='admin') @bot.button(data='talk:///', authorization_level='admin')
async def talk_button(update): async def talk_button(update):
return await _talk_button(update, bot) return await _talk_button(update, bot)
return return