偷取贴纸6秒钟后删除消息

This commit is contained in:
xtaodada 2020-04-06 15:04:10 +08:00
parent 0d7203fba7
commit 55d2ed1898
No known key found for this signature in database
GPG Key ID: 39EFACA711DF5D8C

View File

@ -1,5 +1,6 @@
""" PagerMaid module to handle sticker collection. """ """ PagerMaid module to handle sticker collection. """
from asyncio import sleep
from os import remove from os import remove
from urllib import request from urllib import request
from io import BytesIO from io import BytesIO
@ -121,9 +122,14 @@ A pack can't have more than 120 stickers at the moment.":
await add_sticker(conversation, command, pack_title, pack_name, animated, message, await add_sticker(conversation, command, pack_title, pack_name, animated, message,
context, file, emoji) context, file, emoji)
await context.edit( notification = await context.edit(
f"这张图片/贴纸已经被添加到 [这个](t.me/addstickers/{pack_name}) 贴纸包。", f"这张图片/贴纸已经被添加到 [这个](t.me/addstickers/{pack_name}) 贴纸包。",
parse_mode='md') parse_mode='md')
await sleep(.6)
try:
await notification.delete()
except:
pass
async def add_sticker(conversation, command, pack_title, pack_name, animated, message, context, file, emoji): async def add_sticker(conversation, command, pack_title, pack_name, animated, message, context, file, emoji):