mirror of
https://github.com/TeamPGM/PagerMaid_Plugins_Pyro.git
synced 2024-11-25 11:58:06 +00:00
jikipedia 图片发送失败时降级为仅文本
This commit is contained in:
parent
a7e3a190ac
commit
5fc8f623ea
@ -115,5 +115,9 @@ async def jikipedia(message: Message):
|
||||
if not image:
|
||||
await message.edit(text, disable_web_page_preview=True)
|
||||
else:
|
||||
await message.reply_photo(image, quote=False, caption=text)
|
||||
try:
|
||||
await message.reply_photo(image, quote=False, caption=text)
|
||||
await message.safe_delete()
|
||||
except Exception:
|
||||
await message.edit(text, disable_web_page_preview=True)
|
||||
await message.safe_delete()
|
||||
|
Loading…
Reference in New Issue
Block a user