🐛 Fix incorrect reply text

This commit is contained in:
洛水居室 2023-03-14 10:50:55 +08:00
parent 17a40c2199
commit d20b23d978
No known key found for this signature in database
GPG Key ID: C9DE87DA724B88FC

View File

@ -58,7 +58,8 @@ class WebApp(Plugin):
return return
if status: if status:
await message.reply_text("验证通过", reply_markup=ReplyKeyboardRemove()) await message.reply_text("验证通过", reply_markup=ReplyKeyboardRemove())
await message.reply_text("非法请求", reply_markup=ReplyKeyboardRemove()) else:
await message.reply_text("非法请求", reply_markup=ReplyKeyboardRemove())
return return
else: else:
logger.warning( logger.warning(