diff --git a/plugins/genshin/wish_log.py b/plugins/genshin/wish_log.py index 981d9a7c..f3aef331 100644 --- a/plugins/genshin/wish_log.py +++ b/plugins/genshin/wish_log.py @@ -257,11 +257,8 @@ class WishLogPlugin(Plugin.Conversation): reply = await message.reply_text(WAITING, reply_markup=ReplyKeyboardRemove()) await message.reply_chat_action(ChatAction.TYPING) text = await self._refresh_user_data(user, player_id, authkey=authkey) - try: - await reply.delete() - except BadRequest: - pass - await message.reply_text(text) + self.add_delete_message_job(reply, delay=1) + await message.reply_text(text, reply_markup=ReplyKeyboardRemove()) return ConversationHandler.END @conversation.entry_point