🎨 wish log do not auto-remove when send image

This commit is contained in:
xtaodada 2024-03-28 22:05:57 +08:00
parent 379cf3f099
commit 0457a23868
Signed by: xtaodada
GPG Key ID: 4CBB3F4FA8C85659

View File

@ -350,15 +350,15 @@ class WishLogPlugin(Plugin.Conversation):
png_data = await self.rander_wish_log_analysis(user_id, uid, pool_type)
if isinstance(png_data, str):
reply = await message.reply_text(png_data)
if filters.ChatType.GROUPS.filter(message):
self.add_delete_message_job(reply)
self.add_delete_message_job(message)
else:
await message.reply_chat_action(ChatAction.UPLOAD_PHOTO)
if png_data.file_type == FileType.DOCUMENT:
reply = await png_data.reply_document(message, filename="抽卡统计.png")
await png_data.reply_document(message, filename="抽卡统计.png")
else:
reply = await png_data.reply_photo(message)
if filters.ChatType.GROUPS.filter(message):
self.add_delete_message_job(reply)
self.add_delete_message_job(message)
await png_data.reply_photo(message)
@handler.command(command="warp_log", block=False)
@handler.message(filters=filters.Regex("^跃迁记录?(光锥|角色|常驻|新手)$"), block=False)