telegram does not like keyboard keys to exceed 100

This commit is contained in:
JerryXiao 2018-12-30 19:04:38 +08:00
parent 6c8ed2ebc8
commit 08db857484
Signed by: Jerry
GPG Key ID: 9D9CE43650FF2BAA
1 changed files with 4 additions and 0 deletions

View File

@ -122,6 +122,10 @@ def send_keyboard(bot, update, args):
if width > 8:
width = 8
msg.reply_text('宽度太大已经帮您设置成8了')
# telegram doesn't like keyboard keys to exceed 100
if height * width > 100:
msg.reply_text('格数不能超过100')
return
ck = check_params(height, width, mines)
if ck[0]:
board = Board(height, width, mines)